1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace Atk4\Ui\Form\Control;
6:
7: class Line extends Input
8: {
9: public string $inputType = 'text';
10: }
11: