@@ -54,7 +54,7 @@ |
||
54 | 54 | /** @codeCoverageIgnore Until output is testable */ |
55 | 55 | protected function runServerProcess(string $command): void |
56 | 56 | { |
57 | - Process::forever()->run($command, function (string $type, string $line): void { |
|
57 | + Process::forever()->run($command, function(string $type, string $line): void { |
|
58 | 58 | $this->output->write($line); |
59 | 59 | }); |
60 | 60 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | throw new BadMethodCallException('Cannot register an extension after the Kernel has been booted.'); |
40 | 40 | } |
41 | 41 | |
42 | - if (! is_subclass_of($extension, HydeExtension::class)) { |
|
42 | + if (!is_subclass_of($extension, HydeExtension::class)) { |
|
43 | 43 | // We want to make sure that the extension class extends the HydeExtension class, |
44 | 44 | // so that we won't have to check the methods we need to call exist later on. |
45 | 45 | |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public function getExtension(string $extension): HydeExtension |
65 | 65 | { |
66 | - if (! isset($this->extensions[$extension])) { |
|
66 | + if (!isset($this->extensions[$extension])) { |
|
67 | 67 | throw new InvalidArgumentException("Extension [$extension] is not registered."); |
68 | 68 | } |
69 | 69 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */ |
96 | 96 | public function getRegisteredPageClasses(): array |
97 | 97 | { |
98 | - return array_unique(array_merge(...array_map(function (string $extension): array { |
|
98 | + return array_unique(array_merge(...array_map(function(string $extension): array { |
|
99 | 99 | /** @var <class-string<\Hyde\Foundation\Concerns\HydeExtension>> $extension */ |
100 | 100 | return $extension::getPageClasses(); |
101 | 101 | }, $this->getRegisteredExtensions()))); |
@@ -17,7 +17,7 @@ |
||
17 | 17 | exit(0); |
18 | 18 | } |
19 | 19 | |
20 | -if (! file_exists('report.xml')) { |
|
20 | +if (!file_exists('report.xml')) { |
|
21 | 21 | exit(404); |
22 | 22 | } |
23 | 23 |
@@ -105,7 +105,7 @@ |
||
105 | 105 | |
106 | 106 | protected function findTasksInAppDirectory(): array |
107 | 107 | { |
108 | - return Filesystem::smartGlob('app/Actions/*BuildTask.php')->map(function (string $file): string { |
|
108 | + return Filesystem::smartGlob('app/Actions/*BuildTask.php')->map(function(string $file): string { |
|
109 | 109 | return static::pathToClassName($file); |
110 | 110 | })->toArray(); |
111 | 111 | } |
@@ -39,7 +39,7 @@ |
||
39 | 39 | { |
40 | 40 | $this->startClock(); |
41 | 41 | |
42 | - if ($output && ! $this->output) { |
|
42 | + if ($output && !$this->output) { |
|
43 | 43 | $this->setOutput($output); |
44 | 44 | } |
45 | 45 |
@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | protected function isItSafeToCleanOutputDirectory(): bool |
34 | 34 | { |
35 | - if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
35 | + if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
36 | 36 | $this->info('Output directory will not be emptied.'); |
37 | 37 | |
38 | 38 | return false; |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | public function compileStaticPages(): void |
43 | 43 | { |
44 | - collect($this->getPageTypes())->each(function (string $pageClass): void { |
|
44 | + collect($this->getPageTypes())->each(function(string $pageClass): void { |
|
45 | 45 | $this->compilePagesForClass($pageClass); |
46 | 46 | }); |
47 | 47 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $this->needsDirectory(Hyde::siteMediaPath()); |
52 | 52 | |
53 | 53 | $this->comment('Transferring Media Assets...'); |
54 | - $this->withProgressBar(MediaFile::files(), function (string $identifier): void { |
|
54 | + $this->withProgressBar(MediaFile::files(), function(string $identifier): void { |
|
55 | 55 | $sitePath = Hyde::siteMediaPath($identifier); |
56 | 56 | $this->needsParentDirectory($sitePath); |
57 | 57 | copy(Hyde::mediaPath($identifier), $sitePath); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | $collection = Routes::getRoutes($pageClass); |
71 | 71 | |
72 | - $this->withProgressBar($collection, function (Route $route): void { |
|
72 | + $this->withProgressBar($collection, function(Route $route): void { |
|
73 | 73 | (new StaticPageBuilder($route->getPage()))->__invoke(); |
74 | 74 | }); |
75 | 75 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */ |
85 | 85 | protected function getPageTypes(): array |
86 | 86 | { |
87 | - return Hyde::pages()->map(function (HydePage $page): string { |
|
87 | + return Hyde::pages()->map(function(HydePage $page): string { |
|
88 | 88 | return $page::class; |
89 | 89 | })->unique()->values()->toArray(); |
90 | 90 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | protected function runDiscovery(): void |
34 | 34 | { |
35 | - $this->kernel->pages()->each(function (HydePage $page): void { |
|
35 | + $this->kernel->pages()->each(function(HydePage $page): void { |
|
36 | 36 | $this->addRoute(new Route($page)); |
37 | 37 | }); |
38 | 38 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public function getRoutes(?string $pageClass = null): RouteCollection |
57 | 57 | { |
58 | - return $pageClass ? $this->filter(function (Route $route) use ($pageClass): bool { |
|
58 | + return $pageClass ? $this->filter(function(Route $route) use ($pageClass) : bool { |
|
59 | 59 | return $route->getPage() instanceof $pageClass; |
60 | 60 | }) : $this; |
61 | 61 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function getContentLength(): int |
57 | 57 | { |
58 | - if (! is_file($this->getAbsolutePath())) { |
|
58 | + if (!is_file($this->getAbsolutePath())) { |
|
59 | 59 | throw new FileNotFoundException($this->path); |
60 | 60 | } |
61 | 61 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | |
97 | 97 | protected static function discoverMediaAssetFiles(): array |
98 | 98 | { |
99 | - return collect(static::getMediaAssetFiles())->mapWithKeys(function (string $filepath): array { |
|
99 | + return collect(static::getMediaAssetFiles())->mapWithKeys(function(string $filepath): array { |
|
100 | 100 | $file = static::make($filepath); |
101 | 101 | |
102 | 102 | return [$file->getIdentifier() => $file]; |