@@ -14,7 +14,7 @@ |
||
14 | 14 | /** Get all the configuration files for the application. */ |
15 | 15 | protected function getConfigurationFiles(Application $app): array |
16 | 16 | { |
17 | - return tap(parent::getConfigurationFiles($app), function (array &$files) use ($app): void { |
|
17 | + return tap(parent::getConfigurationFiles($app), function(array &$files) use ($app): void { |
|
18 | 18 | // Inject our custom config file which is stored in `app/config.php`. |
19 | 19 | $files['app'] = $app->basePath().DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'config.php'; |
20 | 20 | }); |
@@ -109,7 +109,7 @@ |
||
109 | 109 | */ |
110 | 110 | public function hasSiteUrl(): bool |
111 | 111 | { |
112 | - return ! blank(config('hyde.url')); |
|
112 | + return !blank(config('hyde.url')); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -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 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | - /* |
|
3 | + /* |
|
4 | 4 | |-------------------------------------------------------------------------- |
5 | 5 | | Torchlight |
6 | 6 | |-------------------------------------------------------------------------- |
@@ -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 |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | return $this->isInstanceOf(MarkdownPost::class) |
95 | 95 | || $this->searchForHiddenInFrontMatter() |
96 | 96 | || in_array($this->routeKey, Config::getArray('hyde.navigation.exclude', ['404'])) |
97 | - || ! $this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden'); |
|
97 | + || !$this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden'); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | protected function makePriority(): int |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | |
196 | 196 | protected function invert(?bool $value): ?bool |
197 | 197 | { |
198 | - return $value === null ? null : ! $value; |
|
198 | + return $value === null ? null : !$value; |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | protected function offset(?int $value, int $offset): ?int |
@@ -51,7 +51,7 @@ |
||
51 | 51 | |
52 | 52 | protected static function validated(mixed $value, string $type, string $key, bool $strict): mixed |
53 | 53 | { |
54 | - if ($strict && ! ("is_$type")($value)) { |
|
54 | + if ($strict && !("is_$type")($value)) { |
|
55 | 55 | throw new TypeError(sprintf('%s(): Config value %s must be of type %s, %s given', __METHOD__, $key, $type, gettype($value))); |
56 | 56 | } |
57 | 57 |