@@ -31,7 +31,7 @@ |
||
| 31 | 31 | |
| 32 | 32 | public function generate(): static |
| 33 | 33 | { |
| 34 | - Route::all()->each(function ($route) { |
|
| 34 | + Route::all()->each(function($route) { |
|
| 35 | 35 | $this->addRoute($route); |
| 36 | 36 | }); |
| 37 | 37 | |
@@ -75,11 +75,11 @@ |
||
| 75 | 75 | */ |
| 76 | 76 | public function copy(string $from, string $to, bool $force = false): int|bool |
| 77 | 77 | { |
| 78 | - if (! file_exists($from)) { |
|
| 78 | + if (!file_exists($from)) { |
|
| 79 | 79 | return 404; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - if (file_exists($to) && ! $force) { |
|
| 82 | + if (file_exists($to) && !$force) { |
|
| 83 | 83 | return 409; |
| 84 | 84 | } |
| 85 | 85 | |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | /** @return $this */ |
| 13 | 13 | public function generate(): static |
| 14 | 14 | { |
| 15 | - RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function (Route $route) { |
|
| 15 | + RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function(Route $route) { |
|
| 16 | 16 | $this->items->push(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route))); |
| 17 | 17 | }); |
| 18 | 18 | |
@@ -21,28 +21,28 @@ discard block |
||
| 21 | 21 | |
| 22 | 22 | public function hasGroups(): bool |
| 23 | 23 | { |
| 24 | - return $this->items->map(function (NavItem $item) { |
|
| 24 | + return $this->items->map(function(NavItem $item) { |
|
| 25 | 25 | return $item->getGroup() !== null; |
| 26 | 26 | })->contains(true); |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | public function getGroups(): array |
| 30 | 30 | { |
| 31 | - return $this->items->map(function (NavItem $item) { |
|
| 31 | + return $this->items->map(function(NavItem $item) { |
|
| 32 | 32 | return $item->getGroup(); |
| 33 | 33 | })->unique()->toArray(); |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | public function getItemsInGroup(?string $group): Collection |
| 37 | 37 | { |
| 38 | - return $this->items->filter(function ($item) use ($group) { |
|
| 38 | + return $this->items->filter(function($item) use ($group) { |
|
| 39 | 39 | return $item->getGroup() === $group || $item->getGroup() === Str::slug($group); |
| 40 | 40 | })->sortBy('priority')->values(); |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | protected function filterHiddenItems(): Collection |
| 44 | 44 | { |
| 45 | - return $this->items->reject(function (NavItem $item) { |
|
| 45 | + return $this->items->reject(function(NavItem $item) { |
|
| 46 | 46 | return $item->route->getSourceModel()->matter('hidden', false) || ($item->route->getRouteKey() === 'docs/index'); |
| 47 | 47 | })->values(); |
| 48 | 48 | } |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | { |
| 57 | 57 | $orderIndexArray = config('docs.sidebar_order', []); |
| 58 | 58 | |
| 59 | - if (! in_array($slug, $orderIndexArray)) { |
|
| 59 | + if (!in_array($slug, $orderIndexArray)) { |
|
| 60 | 60 | return 500; |
| 61 | 61 | } |
| 62 | 62 | |
@@ -28,11 +28,11 @@ discard block |
||
| 28 | 28 | /** @return $this */ |
| 29 | 29 | public function generate(): static |
| 30 | 30 | { |
| 31 | - RoutingService::getInstance()->getRoutes()->each(function (Route $route) { |
|
| 31 | + RoutingService::getInstance()->getRoutes()->each(function(Route $route) { |
|
| 32 | 32 | $this->items->push(NavItem::fromRoute($route)); |
| 33 | 33 | }); |
| 34 | 34 | |
| 35 | - collect(config('hyde.navigation.custom', []))->each(function (NavItem $item) { |
|
| 35 | + collect(config('hyde.navigation.custom', []))->each(function(NavItem $item) { |
|
| 36 | 36 | $this->items->push($item); |
| 37 | 37 | }); |
| 38 | 38 | |
@@ -64,14 +64,14 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | protected function filterHiddenItems(): Collection |
| 66 | 66 | { |
| 67 | - return $this->items->reject(function (NavItem $item) { |
|
| 67 | + return $this->items->reject(function(NavItem $item) { |
|
| 68 | 68 | return $item->hidden; |
| 69 | 69 | })->values(); |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | protected function filterDuplicateItems(): Collection |
| 73 | 73 | { |
| 74 | - return $this->items->unique(function (NavItem $item) { |
|
| 74 | + return $this->items->unique(function(NavItem $item) { |
|
| 75 | 75 | return $item->resolveLink(); |
| 76 | 76 | }); |
| 77 | 77 | } |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | /** @return $this */ |
| 19 | 19 | public function addFeature(string $feature): static |
| 20 | 20 | { |
| 21 | - if (! in_array($feature, $this->features)) { |
|
| 21 | + if (!in_array($feature, $this->features)) { |
|
| 22 | 22 | $this->features[] = $feature; |
| 23 | 23 | } |
| 24 | 24 | |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | public static function getSourceFileListForModel(string $model): array |
| 58 | 58 | { |
| 59 | - if (! class_exists($model) || ! is_subclass_of($model, AbstractPage::class)) { |
|
| 59 | + if (!class_exists($model) || !is_subclass_of($model, AbstractPage::class)) { |
|
| 60 | 60 | throw new UnsupportedPageTypeException($model); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | $files = []; |
| 66 | 66 | foreach (glob(Hyde::path($model::qualifyBasename('{*,**/*}')), GLOB_BRACE) as $filepath) { |
| 67 | - if (! str_starts_with(basename($filepath), '_')) { |
|
| 67 | + if (!str_starts_with(basename($filepath), '_')) { |
|
| 68 | 68 | $files[] = self::formatSlugForModel($model, $filepath); |
| 69 | 69 | } |
| 70 | 70 | } |