| 1 | <?php |
||
| 12 | class Div extends AbstractRenderer implements RendererInterface |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string The template file to use in the rendering |
||
| 17 | */ |
||
| 18 | public $template = 'form-elements/default.twig'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Render the HTML element in the provided context |
||
| 22 | * |
||
| 23 | * @param array $context |
||
| 24 | * |
||
| 25 | * @return string The HTML string output |
||
| 26 | */ |
||
| 27 | 20 | public function render($context = []) |
|
| 38 | } |