@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | public function processInput(): static |
51 | 51 | { |
52 | - $this->output = implode("\n", array_map(function ($line) { |
|
52 | + $this->output = implode("\n", array_map(function($line) { |
|
53 | 53 | return $this->expandShortcode($line); |
54 | 54 | }, explode("\n", $this->input))); |
55 | 55 |
@@ -12,7 +12,7 @@ |
||
12 | 12 | $lines = explode("\n", $markdown); |
13 | 13 | |
14 | 14 | foreach ($lines as $index => $line) { |
15 | - if (static::lineMatchesPattern($line) && ! str_contains($line, '{"shortcodes": false}')) { |
|
15 | + if (static::lineMatchesPattern($line) && !str_contains($line, '{"shortcodes": false}')) { |
|
16 | 16 | // Add the meta-block two lines before the pattern, placing it just above the code block. |
17 | 17 | // This prevents the meta-block from interfering with other processes. |
18 | 18 | $lines[$index - 2] .= sprintf( |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | public static function preprocess(string $markdown): string |
32 | 32 | { |
33 | - return implode("\n", array_map(function ($line) { |
|
33 | + return implode("\n", array_map(function($line) { |
|
34 | 34 | return str_starts_with(strtolower($line), strtolower('[Blade]:')) |
35 | 35 | ? '<!-- HYDE'.trim(htmlentities($line)).' -->' |
36 | 36 | : $line; |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | public function run(): static |
52 | 52 | { |
53 | - $this->output = implode("\n", array_map(function ($line) { |
|
53 | + $this->output = implode("\n", array_map(function($line) { |
|
54 | 54 | return $this->lineStartsWithDirective($line) |
55 | 55 | ? $this->processLine($line) |
56 | 56 | : $line; |
@@ -56,7 +56,7 @@ |
||
56 | 56 | |
57 | 57 | protected function formatOutputPath(string $path): string |
58 | 58 | { |
59 | - if (! file_exists(Hyde::sitePath($path))) { |
|
59 | + if (!file_exists(Hyde::sitePath($path))) { |
|
60 | 60 | return "_site/$path"; |
61 | 61 | } |
62 | 62 |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | */ |
98 | 98 | public function validate(): void |
99 | 99 | { |
100 | - if (! ( |
|
100 | + if (!( |
|
101 | 101 | str_starts_with($this->path, Hyde::pathToRelative(Hyde::getBladePagePath())) || |
102 | 102 | str_starts_with($this->path, Hyde::pathToRelative(Hyde::getMarkdownPagePath())) || |
103 | 103 | str_starts_with($this->path, Hyde::pathToRelative(Hyde::getMarkdownPostPath())) || |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | throw new Exception("Path [$this->path] is not in a valid source directory.", 400); |
107 | 107 | } |
108 | 108 | |
109 | - if (! file_exists(Hyde::path($this->path))) { |
|
109 | + if (!file_exists(Hyde::path($this->path))) { |
|
110 | 110 | throw new Exception("File [$this->path] not found.", 404); |
111 | 111 | } |
112 | 112 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | { |
29 | 29 | $this->selected = $this->argument('homepage') ?? $this->promptForHomepage(); |
30 | 30 | |
31 | - if (! $this->canExistingIndexFileBeOverwritten()) { |
|
31 | + if (!$this->canExistingIndexFileBeOverwritten()) { |
|
32 | 32 | $this->error('A modified index.blade.php file already exists. Use --force to overwrite.'); |
33 | 33 | |
34 | 34 | return 409; |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | protected function canExistingIndexFileBeOverwritten(): bool |
83 | 83 | { |
84 | - if (! file_exists(Hyde::getBladePagePath('index.blade.php')) || $this->option('force')) { |
|
84 | + if (!file_exists(Hyde::getBladePagePath('index.blade.php')) || $this->option('force')) { |
|
85 | 85 | return true; |
86 | 86 | } |
87 | 87 |
@@ -73,7 +73,7 @@ |
||
73 | 73 | |
74 | 74 | public function failed(): bool |
75 | 75 | { |
76 | - return ! $this->passed; |
|
76 | + return !$this->passed; |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | public function statusCode(): int |
@@ -235,7 +235,7 @@ |
||
235 | 235 | |
236 | 236 | public function showInNavigation(): bool |
237 | 237 | { |
238 | - return ! $this->navigation['hidden']; |
|
238 | + return !$this->navigation['hidden']; |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | public function navigationMenuPriority(): int |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Hyde\Foundation\HydeKernel; |
6 | 6 | |
7 | -if (! function_exists('hyde')) { |
|
7 | +if (!function_exists('hyde')) { |
|
8 | 8 | /** |
9 | 9 | * Get the available HydeKernel instance. |
10 | 10 | * |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | } |
17 | 17 | } |
18 | 18 | |
19 | -if (! function_exists('unslash')) { |
|
19 | +if (!function_exists('unslash')) { |
|
20 | 20 | /** |
21 | 21 | * Remove trailing slashes from the start and end of a string. |
22 | 22 | * |