| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 9 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class DropdownNavItem extends NavItem |
||
| 15 | { |
||
| 16 | /** @var array<NavItem> */ |
||
| 17 | public array $items; |
||
| 18 | public string $name; |
||
| 19 | public string $href = '#'; |
||
| 20 | |||
| 21 | public function __construct(string $name, array $items) |
||
| 26 | } |
||
| 27 | |||
| 28 | public static function fromArray(string $name, array $items): static |
||
| 33 |