Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class MenuProvider implements MenuProviderInterface |
||
15 | { |
||
16 | private array $menuConfigurations; |
||
17 | private MenuFactoryInterface $menuFactory; |
||
18 | |||
19 | 1 | public function __construct( |
|
25 | 1 | } |
|
26 | |||
27 | 1 | public function get(string $name, array $options = []): ItemInterface |
|
30 | } |
||
31 | |||
32 | public function has(string $name, array $options = []): bool |
||
37 |