@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function getSourceFiles(?string $pageClass = null): self |
36 | 36 | { |
37 | - return ! $pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass); |
|
37 | + return !$pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | { |
93 | 93 | // Scan the source directory, and directories therein, for files that match the model's file extension. |
94 | 94 | foreach (glob($this->kernel->path($pageClass::sourcePath('{*,**/*}')), GLOB_BRACE) as $filepath) { |
95 | - if (! str_starts_with(basename((string) $filepath), '_')) { |
|
95 | + if (!str_starts_with(basename((string) $filepath), '_')) { |
|
96 | 96 | $this->put($this->kernel->pathToRelative($filepath), SourceFile::make($filepath, $pageClass)); |
97 | 97 | } |
98 | 98 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | public function getPages(?string $pageClass = null): self |
32 | 32 | { |
33 | - return $pageClass ? $this->filter(function (HydePage $page) use ($pageClass): bool { |
|
33 | + return $pageClass ? $this->filter(function(HydePage $page) use ($pageClass) : bool { |
|
34 | 34 | return $page instanceof $pageClass; |
35 | 35 | }) : $this; |
36 | 36 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | |
73 | 73 | protected function discoverPagesFor(string $pageClass): void |
74 | 74 | { |
75 | - $this->parsePagesFor($pageClass)->each(function (HydePage $page): void { |
|
75 | + $this->parsePagesFor($pageClass)->each(function(HydePage $page): void { |
|
76 | 76 | $this->addPage($page); |
77 | 77 | }); |
78 | 78 | } |
@@ -70,11 +70,11 @@ |
||
70 | 70 | */ |
71 | 71 | public static function getSourceFileListForModel(string $model): array |
72 | 72 | { |
73 | - if (! class_exists($model) || ! is_subclass_of($model, HydePage::class)) { |
|
73 | + if (!class_exists($model) || !is_subclass_of($model, HydePage::class)) { |
|
74 | 74 | throw new UnsupportedPageTypeException($model); |
75 | 75 | } |
76 | 76 | |
77 | - return Files::getSourceFiles($model)->flatten()->map(function (SourceFile $file) use ($model): string { |
|
77 | + return Files::getSourceFiles($model)->flatten()->map(function(SourceFile $file) use ($model): string { |
|
78 | 78 | return static::pathToIdentifier($model, $file->withoutDirectoryPrefix()); |
79 | 79 | })->toArray(); |
80 | 80 | } |
@@ -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->label; |
72 | 72 | }); |
73 | 73 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | Commands\ChangeSourceDirectoryCommand::class, |
39 | 39 | ]); |
40 | 40 | |
41 | - Artisan::starting(function (Artisan $artisan): void { |
|
41 | + Artisan::starting(function(Artisan $artisan): void { |
|
42 | 42 | $artisan->setName(self::logo()); |
43 | 43 | }); |
44 | 44 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | // the default LoadConfiguration bootstrapper class with our implementation. |
24 | 24 | // We do this by swapping out the LoadConfiguration class with our own. |
25 | 25 | |
26 | - return array_values(tap(array_combine($bootstrappers, $bootstrappers), function (array &$array): void { |
|
26 | + return array_values(tap(array_combine($bootstrappers, $bootstrappers), function(array &$array): void { |
|
27 | 27 | $array[\LaravelZero\Framework\Bootstrap\LoadConfiguration::class] = \Hyde\Foundation\Internal\LoadConfiguration::class; |
28 | 28 | })); |
29 | 29 | } |
@@ -38,14 +38,14 @@ discard block |
||
38 | 38 | throw new BadMethodCallException('Cannot register an extension after the Kernel has been booted.'); |
39 | 39 | } |
40 | 40 | |
41 | - if (! is_subclass_of($extension, HydeExtension::class)) { |
|
41 | + if (!is_subclass_of($extension, HydeExtension::class)) { |
|
42 | 42 | // We want to make sure that the extension class extends the HydeExtension class, |
43 | 43 | // so that we won't have to check the methods we need to call exist later on. |
44 | 44 | |
45 | 45 | throw new InvalidArgumentException('The specified class must extend the HydeExtension class.'); |
46 | 46 | } |
47 | 47 | |
48 | - if (! in_array($extension, $this->extensions, true)) { |
|
48 | + if (!in_array($extension, $this->extensions, true)) { |
|
49 | 49 | $this->extensions[] = $extension; |
50 | 50 | } |
51 | 51 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */ |
60 | 60 | public function getRegisteredPageClasses(): array |
61 | 61 | { |
62 | - return array_unique(array_merge(...array_map(function (string $extension): array { |
|
62 | + return array_unique(array_merge(...array_map(function(string $extension): array { |
|
63 | 63 | /** @var <class-string<\Hyde\Foundation\Concerns\HydeExtension>> $extension */ |
64 | 64 | return $extension::getPageClasses(); |
65 | 65 | }, $this->getRegisteredExtensions()))); |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | /** @param class-string<\Hyde\Pages\Concerns\HydePage> $class */ |
57 | 57 | protected function formatSourcePath(string $path, string $class): string |
58 | 58 | { |
59 | - if (! $class::isDiscoverable()) { |
|
59 | + if (!$class::isDiscoverable()) { |
|
60 | 60 | return '<fg=yellow>dynamic</>'; |
61 | 61 | } |
62 | 62 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | |
66 | 66 | protected function formatOutputPath(string $path): string |
67 | 67 | { |
68 | - if (! file_exists(Hyde::sitePath($path))) { |
|
68 | + if (!file_exists(Hyde::sitePath($path))) { |
|
69 | 69 | return "_site/$path"; |
70 | 70 | } |
71 | 71 |
@@ -24,7 +24,7 @@ |
||
24 | 24 | { |
25 | 25 | public function generate(): static |
26 | 26 | { |
27 | - MarkdownPost::getLatestPosts()->each(function (MarkdownPost $post): void { |
|
27 | + MarkdownPost::getLatestPosts()->each(function(MarkdownPost $post): void { |
|
28 | 28 | $this->addItem($post); |
29 | 29 | }); |
30 | 30 |