@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | { |
22 | 22 | protected function setSource(string $source): string |
23 | 23 | { |
24 | - if (! str_starts_with($source, '_media/')) { |
|
24 | + if (!str_starts_with($source, '_media/')) { |
|
25 | 25 | // Throwing an exception here ensures we have a super predictable state. |
26 | 26 | throw new InvalidArgumentException('LocalFeaturedImage source must start with _media/'); |
27 | 27 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | protected function storageValidatedPath(): string |
51 | 51 | { |
52 | - if (! file_exists($this->storagePath())) { |
|
52 | + if (!file_exists($this->storagePath())) { |
|
53 | 53 | throw new FileNotFoundException("Image at $this->source does not exist"); |
54 | 54 | } |
55 | 55 |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | return $this->isInstanceOf(MarkdownPost::class) |
94 | 94 | || $this->searchForHiddenInFrontMatter() |
95 | 95 | || in_array($this->routeKey, config('hyde.navigation.exclude', ['404'])) |
96 | - || ! $this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden'); |
|
96 | + || !$this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden'); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | protected function makePriority(): int |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | |
195 | 195 | protected function invert(?bool $value): ?bool |
196 | 196 | { |
197 | - return $value === null ? null : ! $value; |
|
197 | + return $value === null ? null : !$value; |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | protected function offset(?int $value, int $offset): ?int |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | throw new InvalidArgumentException('A file already exists at this path!'); |
95 | 95 | } |
96 | 96 | |
97 | - if (Filesystem::isDirectory($name) && ! Filesystem::isEmptyDirectory($name)) { |
|
97 | + if (Filesystem::isDirectory($name) && !Filesystem::isEmptyDirectory($name)) { |
|
98 | 98 | // If any of the subdirectories we want to move already exist, we need to abort as we don't want to overwrite any existing files |
99 | 99 | // The reason we check these individually is mainly so that the change can be reverted (by setting the $name to '/') |
100 | 100 | foreach ($this->getPageDirectories() as $directory) { |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | |
114 | 114 | protected function directoryContainsFiles(string $subdirectory): bool |
115 | 115 | { |
116 | - return Filesystem::isDirectory($subdirectory) && ! Filesystem::isEmptyDirectory($subdirectory); |
|
116 | + return Filesystem::isDirectory($subdirectory) && !Filesystem::isEmptyDirectory($subdirectory); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | protected function updateConfigurationFile(string $newDirectoryName, string $currentDirectoryName): void |
@@ -18,7 +18,7 @@ |
||
18 | 18 | */ |
19 | 19 | public static function needsDirectory(string $directory): void |
20 | 20 | { |
21 | - if (! Filesystem::exists($directory)) { |
|
21 | + if (!Filesystem::exists($directory)) { |
|
22 | 22 | Filesystem::makeDirectory($directory, recursive: true); |
23 | 23 | } |
24 | 24 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | { |
57 | 57 | $selected = $this->parseSelection(); |
58 | 58 | |
59 | - if (! $this->canExistingFileBeOverwritten()) { |
|
59 | + if (!$this->canExistingFileBeOverwritten()) { |
|
60 | 60 | $this->error('A modified index.blade.php file already exists. Use --force to overwrite.'); |
61 | 61 | |
62 | 62 | return 409; |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | Artisan::call('vendor:publish', [ |
68 | 68 | '--tag' => $this->options[$selected]['group'] ?? $selected, |
69 | 69 | '--force' => true, // Todo add force state dynamically depending on existing file state |
70 | - ], ! $tagExists ? $this->output : null); |
|
70 | + ], !$tagExists ? $this->output : null); |
|
71 | 71 | |
72 | 72 | if ($tagExists) { |
73 | 73 | $this->infoComment("Published page [$selected]"); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | |
95 | 95 | protected function formatPublishableChoices(): array |
96 | 96 | { |
97 | - return $this->getTemplateOptions()->map(function (array $option, string $key): string { |
|
97 | + return $this->getTemplateOptions()->map(function(array $option, string $key): string { |
|
98 | 98 | return "<comment>$key</comment>: {$option['description']}"; |
99 | 99 | })->values()->toArray(); |
100 | 100 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | return true; |
116 | 116 | } |
117 | 117 | |
118 | - if (! file_exists(Hyde::getBladePagePath('index.blade.php'))) { |
|
118 | + if (!file_exists(Hyde::getBladePagePath('index.blade.php'))) { |
|
119 | 119 | return true; |
120 | 120 | } |
121 | 121 |