| 1 | <?php |
||
| 21 | class TextArea extends AbstractInput implements InputInterface |
||
| 22 | { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string Renderer class |
||
| 26 | */ |
||
| 27 | protected $rendererClass = AreaRenderer::class; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Adds the value to the select |
||
| 31 | * |
||
| 32 | * Mainly it removes the entry in the attributes list |
||
| 33 | * |
||
| 34 | * @param mixed $value |
||
| 35 | * |
||
| 36 | * @return $this|self|Select |
||
| 37 | */ |
||
| 38 | 4 | public function setValue($value) |
|
| 46 | } |