| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class StructureRaw extends AbstractElement |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * |
||
| 22 | * Returns any kind of nestd HTML elements with attributes. |
||
| 23 | * |
||
| 24 | * @param string $tag The tag to generate. |
||
| 25 | * |
||
| 26 | * @param string|array $content The element content |
||
| 27 | * |
||
| 28 | * @param array $attr Attributes for the tag. |
||
| 29 | * |
||
| 30 | * @return string |
||
| 31 | * |
||
| 32 | */ |
||
| 33 | public function __invoke($tag, $content, array $attr = array()) |
||
| 42 |