1 | <?php |
||
7 | class Textarea extends BaseElement |
||
8 | { |
||
9 | protected $tag = 'textarea'; |
||
10 | |||
11 | /** |
||
12 | * @return static |
||
13 | */ |
||
14 | public function autofocus() |
||
18 | |||
19 | /** |
||
20 | * @return static |
||
21 | */ |
||
22 | public function placeholder(string $placeholder) |
||
26 | |||
27 | /** |
||
28 | * @param string $name |
||
29 | * |
||
30 | * @return static |
||
31 | */ |
||
32 | public function name(?string $name) |
||
36 | |||
37 | /** |
||
38 | * @param string $value |
||
39 | * |
||
40 | * @return static |
||
41 | */ |
||
42 | public function value(?string $value) |
||
46 | } |
||
47 |