@@ -52,7 +52,7 @@ |
||
52 | 52 | |
53 | 53 | public function processInput(): static |
54 | 54 | { |
55 | - $this->output = implode("\n", array_map(function (string $line): string { |
|
55 | + $this->output = implode("\n", array_map(function(string $line): string { |
|
56 | 56 | return $this->expandShortcode($line); |
57 | 57 | }, explode("\n", $this->input))); |
58 | 58 |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | public static function preprocess(string $markdown): string |
36 | 36 | { |
37 | - return implode("\n", array_map(function (string $line): string { |
|
37 | + return implode("\n", array_map(function(string $line): string { |
|
38 | 38 | return str_starts_with(strtolower($line), strtolower('[Blade]:')) |
39 | 39 | ? '<!-- HYDE'.trim(e($line)).' -->' |
40 | 40 | : $line; |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | public function run(): static |
56 | 56 | { |
57 | - $this->output = implode("\n", array_map(function (string $line): string { |
|
57 | + $this->output = implode("\n", array_map(function(string $line): string { |
|
58 | 58 | return $this->lineStartsWithDirective($line) |
59 | 59 | ? $this->processLine($line) |
60 | 60 | : $line; |
@@ -35,7 +35,7 @@ |
||
35 | 35 | return ''; |
36 | 36 | } |
37 | 37 | |
38 | - return sprintf(' %s', collect($this->attr)->map(function (string $value, string $key): string { |
|
38 | + return sprintf(' %s', collect($this->attr)->map(function(string $value, string $key): string { |
|
39 | 39 | return e($key).'="'.e($value).'"'; |
40 | 40 | })->implode(' ')); |
41 | 41 | } |
@@ -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 |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | protected static function qualifyArguments(array $parameterNames, array $arguments): Collection |
88 | 88 | { |
89 | - return collect($arguments)->mapWithKeys(function (string|array|int|bool $argumentValue, int|string $key) use ($parameterNames): string|array|int|bool { |
|
89 | + return collect($arguments)->mapWithKeys(function(string|array|int|bool $argumentValue, int|string $key) use ($parameterNames): string|array|int|bool { |
|
90 | 90 | $argumentsToQualify = [ |
91 | 91 | 'path', 'paths', 'file', 'target', 'directory', 'destination', 'firstFile', 'secondFile', |
92 | 92 | 'pattern', 'link', 'from', 'to', |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | protected static function qualifyPathArgument(array|string $path): string|array |
109 | 109 | { |
110 | 110 | return is_array($path) |
111 | - ? array_map(fn (string $path): string => self::qualifyPathArgument($path), $path) |
|
111 | + ? array_map(fn (string $path) : string => self::qualifyPathArgument($path), $path) |
|
112 | 112 | : self::absolutePath($path); |
113 | 113 | } |
114 | 114 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | protected function validatedStoragePath(): string |
51 | 51 | { |
52 | - if (! file_exists($this->storagePath())) { |
|
52 | + if (!file_exists($this->storagePath())) { |
|
53 | 53 | throw new FileNotFoundException(sprintf('Image at %s does not exist', Hyde::pathToRelative($this->storagePath()))); |
54 | 54 | } |
55 | 55 |
@@ -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 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $this->needsDirectory(Hyde::siteMediaPath()); |
64 | 64 | |
65 | 65 | $this->comment('Transferring Media Assets...'); |
66 | - $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function (string $filepath): void { |
|
66 | + $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function(string $filepath): void { |
|
67 | 67 | $sitePath = Hyde::siteMediaPath(Str::after($filepath, Hyde::mediaPath())); |
68 | 68 | $this->needsParentDirectory($sitePath); |
69 | 69 | copy($filepath, $sitePath); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | $collection = $this->router->getRoutes($pageClass); |
83 | 83 | |
84 | - $this->withProgressBar($collection, function (Route $route): void { |
|
84 | + $this->withProgressBar($collection, function(Route $route): void { |
|
85 | 85 | (new StaticPageBuilder($route->getPage()))->__invoke(); |
86 | 86 | }); |
87 | 87 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | protected function isItSafeToCleanOutputDirectory(): bool |
97 | 97 | { |
98 | - if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
98 | + if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) { |
|
99 | 99 | $this->info('Output directory will not be emptied.'); |
100 | 100 | |
101 | 101 | return false; |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */ |
127 | 127 | protected function getPageTypes(): array |
128 | 128 | { |
129 | - return Hyde::pages()->map(function (HydePage $page): string { |
|
129 | + return Hyde::pages()->map(function(HydePage $page): string { |
|
130 | 130 | return $page::class; |
131 | 131 | })->unique()->values()->toArray(); |
132 | 132 | } |