| 1 | <?php |
||
| 16 | class FieldSet extends AbstractHtml |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $legend; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $legend |
||
| 25 | * @param string|array|HtmlInterface $value |
||
| 26 | */ |
||
| 27 | public function __construct($legend, $value) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | protected function getTagName() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | protected function toStringInternal($tag, $attribs, $value) |
||
| 48 | } |
||
| 49 |