diff --git a/src/inputs/TextInput.php b/src/inputs/TextInput.php new file mode 100644 index 0000000..f19f852 --- /dev/null +++ b/src/inputs/TextInput.php @@ -0,0 +1,33 @@ +name = $name; + $this->paramsArray = $paramsArray; + } + + public function create(): void + { + $paramsString = $this->createParams($this->paramsArray); + echo ""; + } + + public static function build(string $name, array $paramsArray = []): void + { + $input = new self($name, $paramsArray); + $input->create(); + } + +} \ No newline at end of file