| 1 | <?php |
||
| 5 | trait LabelTrait |
||
| 6 | { |
||
| 7 | use OptionAccessorsTrait; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @param string|false $label |
||
| 11 | * @return $this |
||
| 12 | * @link http://symfony.com/doc/current/reference/forms/types/form.html#label |
||
| 13 | */ |
||
| 14 | public function setLabel($label) |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return string|false |
||
| 21 | * @link http://symfony.com/doc/current/reference/forms/types/form.html#label |
||
| 22 | */ |
||
| 23 | public function getLabel() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return $this |
||
| 30 | * @link http://symfony.com/doc/current/reference/forms/types/form.html#label |
||
| 31 | */ |
||
| 32 | public function removeLabel() |
||
| 36 | } |
||
| 37 |