1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Braunstetter\MenuBundle\Contracts; |
||
6 | |||
7 | interface MenuResolverInterface |
||
8 | { |
||
9 | /** |
||
10 | * @param array<array-key, mixed> $context |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
11 | * @return MenuItemInterface[] |
||
12 | */ |
||
13 | public function get(string $name, array $context): array; |
||
14 | } |
||
15 |