@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | |
| 50 | 50 | public function hasDropdowns(): bool |
| 51 | 51 | { |
| 52 | - if (! $this->dropdownsEnabled()) { |
|
| 52 | + if (!$this->dropdownsEnabled()) { |
|
| 53 | 53 | return false; |
| 54 | 54 | } |
| 55 | 55 | |
@@ -59,18 +59,18 @@ discard block |
||
| 59 | 59 | /** @return array<string, DropdownNavItem> */ |
| 60 | 60 | public function getDropdowns(): array |
| 61 | 61 | { |
| 62 | - if (! $this->dropdownsEnabled()) { |
|
| 62 | + if (!$this->dropdownsEnabled()) { |
|
| 63 | 63 | throw new BadMethodCallException('Dropdowns are not enabled. Enable it by setting `hyde.navigation.subdirectories` to `dropdown`.'); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - return $this->items->filter(function (NavItem $item): bool { |
|
| 66 | + return $this->items->filter(function(NavItem $item): bool { |
|
| 67 | 67 | return $item instanceof DropdownNavItem; |
| 68 | 68 | })->all(); |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | protected static function canBeInDropdown(NavItem $item): bool |
| 72 | 72 | { |
| 73 | - return ($item->getGroup() !== null) && ! in_array($item->route->getPageClass(), [DocumentationPage::class, MarkdownPost::class]); |
|
| 73 | + return ($item->getGroup() !== null) && !in_array($item->route->getPageClass(), [DocumentationPage::class, MarkdownPost::class]); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | protected static function dropdownsEnabled(): bool |
@@ -81,6 +81,6 @@ discard block |
||
| 81 | 81 | protected static function shouldItemBeHidden(NavItem $item): bool |
| 82 | 82 | { |
| 83 | 83 | return parent::shouldItemBeHidden($item) || |
| 84 | - $item->getRoute()?->getPage() instanceof DocumentationPage && ! $item->getRoute()->is(DocumentationPage::homeRouteName()); |
|
| 84 | + $item->getRoute()?->getPage() instanceof DocumentationPage && !$item->getRoute()->is(DocumentationPage::homeRouteName()); |
|
| 85 | 85 | } |
| 86 | 86 | } |