1 | <?php |
||
14 | class PrefixedNavigationItem extends NavigationItem implements PrefixableItem, ManualMatch |
||
15 | { |
||
16 | use ManualMatchExtension; |
||
17 | |||
18 | /** @var string */ |
||
19 | private $prefix; |
||
20 | |||
21 | public function __construct(string $uri, string $label, string $regexPattern, Item $parent = null, array $children = []) |
||
27 | |||
28 | public function getPrefix() |
||
32 | } |
||
33 |