| 1 | <?php |
||
| 14 | abstract class AbstractAuraForm extends Form |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var HelperLocator |
||
| 18 | */ |
||
| 19 | protected $helper; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @Inject |
||
| 23 | */ |
||
| 24 | public function setFormHelper(HelperLocatorFactory $factory) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | * |
||
| 32 | * @throws \Aura\Input\Exception\NoSuchInput |
||
| 33 | */ |
||
| 34 | abstract public function __toString(); |
||
| 35 | } |
||
| 36 |