Issues (5)

src/Contracts/MenuResolverInterface.php (1 issue)

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
The doc comment array<array-key, mixed> at position 2 could not be parsed: Unknown type name 'array-key' at position 2 in array<array-key, mixed>.
Loading history...
11
     * @return MenuItemInterface[]
12
     */
13
    public function get(string $name, array $context): array;
14
}
15