@@ -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 FileCollection::getSourceFiles($model)->flatten()->map(function (File $file) use ($model): string { |
|
77 | + return FileCollection::getSourceFiles($model)->flatten()->map(function(File $file) use ($model): string { |
|
78 | 78 | return static::pathToIdentifier($model, $file->withoutDirectoryPrefix()); |
79 | 79 | })->toArray(); |
80 | 80 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public function getSourceFiles(?string $pageClass = null): self |
34 | 34 | { |
35 | - return ! $pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass); |
|
35 | + return !$pageClass ? $this->getAllSourceFiles() : $this->getSourceFilesFor($pageClass); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | { |
91 | 91 | // Scan the source directory, and directories therein, for files that match the model's file extension. |
92 | 92 | foreach (glob($this->kernel->path($pageClass::sourcePath('{*,**/*}')), GLOB_BRACE) as $filepath) { |
93 | - if (! str_starts_with(basename((string) $filepath), '_')) { |
|
93 | + if (!str_starts_with(basename((string) $filepath), '_')) { |
|
94 | 94 | $this->put($this->kernel->pathToRelative($filepath), File::make($filepath)->belongsTo($pageClass)); |
95 | 95 | } |
96 | 96 | } |
@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | { |
33 | 33 | $selected = $this->parseSelection(); |
34 | 34 | |
35 | - if (! Homepages::exists($selected)) { |
|
35 | + if (!Homepages::exists($selected)) { |
|
36 | 36 | $this->error("Homepage $selected does not exist."); |
37 | 37 | |
38 | 38 | return 404; |
39 | 39 | } |
40 | 40 | |
41 | - if (! $this->canExistingFileBeOverwritten()) { |
|
41 | + if (!$this->canExistingFileBeOverwritten()) { |
|
42 | 42 | $this->error('A modified index.blade.php file already exists. Use --force to overwrite.'); |
43 | 43 | |
44 | 44 | return 409; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | protected function formatPublishableChoices(): array |
71 | 71 | { |
72 | - return $this->getTemplateOptions()->map(function (array $option, string $key): string { |
|
72 | + return $this->getTemplateOptions()->map(function(array $option, string $key): string { |
|
73 | 73 | return "<comment>$key</comment>: {$option['description']}"; |
74 | 74 | })->values()->toArray(); |
75 | 75 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | return true; |
91 | 91 | } |
92 | 92 | |
93 | - if (! file_exists(Hyde::getBladePagePath('index.blade.php'))) { |
|
93 | + if (!file_exists(Hyde::getBladePagePath('index.blade.php'))) { |
|
94 | 94 | return true; |
95 | 95 | } |
96 | 96 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | $path = static::getOutputPath(); |
19 | 19 | |
20 | - if (file_exists($path) && ! $force) { |
|
20 | + if (file_exists($path) && !$force) { |
|
21 | 21 | return false; |
22 | 22 | } |
23 | 23 |
@@ -59,7 +59,7 @@ |
||
59 | 59 | /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */ |
60 | 60 | public function getDiscoveredPageTypes(): array |
61 | 61 | { |
62 | - return $this->pages()->map(function (HydePage $page): string { |
|
62 | + return $this->pages()->map(function(HydePage $page): string { |
|
63 | 63 | return $page::class; |
64 | 64 | })->unique()->values()->toArray(); |
65 | 65 | } |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | public function compileStaticPages(): void |
42 | 42 | { |
43 | - collect(Hyde::getDiscoveredPageTypes())->each(function (string $pageClass) { |
|
43 | + collect(Hyde::getDiscoveredPageTypes())->each(function(string $pageClass) { |
|
44 | 44 | $this->compilePagesForClass($pageClass); |
45 | 45 | }); |
46 | 46 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | $this->needsDirectory(Hyde::sitePath('media')); |
63 | 63 | |
64 | 64 | $this->comment('Transferring Media Assets...'); |
65 | - $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function (string $filepath): void { |
|
65 | + $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function(string $filepath): void { |
|
66 | 66 | $sitePath = Hyde::sitePath('media/'.unslash(Str::after($filepath, Hyde::path('_media')))); |
67 | 67 | $this->needsParentDirectory($sitePath); |
68 | 68 | copy($filepath, $sitePath); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | |
81 | 81 | $collection = $this->router->getRoutes($pageClass); |
82 | 82 | |
83 | - $this->withProgressBar($collection, function (Route $route): void { |
|
83 | + $this->withProgressBar($collection, function(Route $route): void { |
|
84 | 84 | (new StaticPageBuilder($route->getPage()))->__invoke(); |
85 | 85 | }); |
86 | 86 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | |
95 | 95 | protected function isItSafeToCleanOutputDirectory(): bool |
96 | 96 | { |
97 | - if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
97 | + if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
98 | 98 | $this->info('Output directory will not be emptied.'); |
99 | 99 | |
100 | 100 | return false; |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | public function line(string $message = ''): self |
22 | 22 | { |
23 | - return $this->write($message . PHP_EOL); |
|
23 | + return $this->write($message.PHP_EOL); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | public function newline(int $count = 1): self |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | protected function ansi(string $string, string $color): string |
56 | 56 | { |
57 | - return "\033[" . $color . 'm' . $string . "\033[0m"; |
|
57 | + return "\033[".$color.'m'.$string."\033[0m"; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | protected function black(string $string): string |
@@ -42,6 +42,6 @@ |
||
42 | 42 | */ |
43 | 43 | public function has(string $key): bool |
44 | 44 | { |
45 | - return ! blank($this->data($key)); |
|
45 | + return !blank($this->data($key)); |
|
46 | 46 | } |
47 | 47 | } |
@@ -18,8 +18,8 @@ discard block |
||
18 | 18 | /** @return $this */ |
19 | 19 | public function generate(): static |
20 | 20 | { |
21 | - Router::getRoutes(DocumentationPage::class)->each(function (Route $route) { |
|
22 | - $this->items->push(tap(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)), function (NavItem $item) { |
|
21 | + Router::getRoutes(DocumentationPage::class)->each(function(Route $route) { |
|
22 | + $this->items->push(tap(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)), function(NavItem $item) { |
|
23 | 23 | $item->label = $item->route->getPage()->data('navigation.label'); |
24 | 24 | })); |
25 | 25 | }); |
@@ -34,14 +34,14 @@ discard block |
||
34 | 34 | |
35 | 35 | public function getGroups(): array |
36 | 36 | { |
37 | - return $this->items->map(function (NavItem $item) { |
|
37 | + return $this->items->map(function(NavItem $item) { |
|
38 | 38 | return $item->getGroup(); |
39 | 39 | })->unique()->toArray(); |
40 | 40 | } |
41 | 41 | |
42 | 42 | public function getItemsInGroup(?string $group): Collection |
43 | 43 | { |
44 | - return $this->items->filter(function ($item) use ($group) { |
|
44 | + return $this->items->filter(function($item) use ($group) { |
|
45 | 45 | return $item->getGroup() === $group || $item->getGroup() === Str::slug($group); |
46 | 46 | })->sortBy('navigation.priority')->values(); |
47 | 47 | } |
@@ -53,6 +53,6 @@ discard block |
||
53 | 53 | |
54 | 54 | protected function filterDocumentationPage(NavItem $item): bool |
55 | 55 | { |
56 | - return ! parent::filterDocumentationPage($item); |
|
56 | + return !parent::filterDocumentationPage($item); |
|
57 | 57 | } |
58 | 58 | } |