1 | <?php |
||
19 | final class ConfigProvider implements MenuProviderInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var ConfigBuilderInterface |
||
23 | */ |
||
24 | private $builder; |
||
25 | |||
26 | /** |
||
27 | * @var array<string, mixed> |
||
28 | */ |
||
29 | private $menus; |
||
30 | |||
31 | public function __construct(ConfigBuilderInterface $builder, array $menuIds) |
||
36 | |||
37 | public function get($name, array $options = []): ItemInterface |
||
45 | |||
46 | public function has($name, array $options = []): bool |
||
50 | } |
||
51 |