@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | /** @return $this */ |
31 | 31 | public function generate(): static |
32 | 32 | { |
33 | - Routes::each(function (Route $route): void { |
|
33 | + Routes::each(function(Route $route): void { |
|
34 | 34 | $this->items->put($route->getRouteKey(), NavItem::fromRoute($route)); |
35 | 35 | }); |
36 | 36 | |
37 | - collect(config('hyde.navigation.custom', []))->each(function (NavItem $item): void { |
|
37 | + collect(config('hyde.navigation.custom', []))->each(function(NavItem $item): void { |
|
38 | 38 | $this->items->push($item); |
39 | 39 | }); |
40 | 40 | |
@@ -60,14 +60,14 @@ discard block |
||
60 | 60 | |
61 | 61 | protected function filterHiddenItems(): Collection |
62 | 62 | { |
63 | - return $this->items->reject(function (NavItem $item): bool { |
|
63 | + return $this->items->reject(function(NavItem $item): bool { |
|
64 | 64 | return $this->shouldItemBeHidden($item); |
65 | 65 | })->values(); |
66 | 66 | } |
67 | 67 | |
68 | 68 | protected function filterDuplicateItems(): Collection |
69 | 69 | { |
70 | - return $this->items->unique(function (NavItem $item): string { |
|
70 | + return $this->items->unique(function(NavItem $item): string { |
|
71 | 71 | return $item->getGroup().$item->label; |
72 | 72 | }); |
73 | 73 | } |