| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class Dashboard extends Tag |
||
| 13 | { |
||
| 14 | protected const DEFAULT_TAG = Html5::TAG_DIV; |
||
| 15 | |||
| 16 | protected const CLASS_DASHBOARD = 'dashboard-container'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Dashboard constructor. |
||
| 20 | * |
||
| 21 | * @param array<string|INode>|string|INode|null $content |
||
| 22 | * @param array $intents |
||
| 23 | * @param array<string,Attribute>|null $attributes |
||
| 24 | * @param string|null $tag |
||
| 25 | */ |
||
| 26 | public function __construct( |
||
| 37 |