| 1 | <?php |
||
| 5 | abstract class ElementContent extends Element implements \hemio\html\Interface_\MaintainsChilds |
||
| 6 | { |
||
| 7 | |||
| 8 | use \hemio\html\Trait_\ChildMaintainance; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * |
||
| 12 | */ |
||
| 13 | public function __toString() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Default assumption is, that an element is not a block element. |
||
| 47 | * This might be overwritten by the implementation of a specific element. |
||
| 48 | * |
||
| 49 | * @return boolean |
||
| 50 | */ |
||
| 51 | public function blnIsBlock() |
||
| 55 | |||
| 56 | public function describe() |
||
| 60 | } |
||
| 61 |