@@ -15,7 +15,7 @@ |
||
15 | 15 | public const FEATURED_IMAGE_SCHEMA = [ |
16 | 16 | 'source' => 'string', // Name of a file in _media/ or a remote URL (required) |
17 | 17 | 'altText' => 'string', // The alt text (important for accessibility) |
18 | - 'alt' => 'string', // Alternative to altText (simplified schema) |
|
18 | + 'alt' => 'string', // Alternative to altText (simplified schema) |
|
19 | 19 | 'titleText' => 'string', // The title text (hover tooltip & metadata) |
20 | 20 | 'caption' => 'string', // The caption text (simplified schema) |
21 | 21 | 'licenseName' => 'string', // The name of the license (e.g. "CC BY 4.0") |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | public function render(Node $node, ChildNodeRendererInterface $childRenderer): string |
37 | 37 | { |
38 | - if (! ($node instanceof Heading)) { |
|
38 | + if (!($node instanceof Heading)) { |
|
39 | 39 | throw new \InvalidArgumentException('Incompatible node type: '.get_class($node)); |
40 | 40 | } |
41 | 41 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | return config('markdown.permalinks.enabled', true) |
59 | 59 | && $level >= config('markdown.permalinks.min_level', 2) |
60 | 60 | && $level <= config('markdown.permalinks.max_level', 6) |
61 | - && ! str_contains($content, 'class="heading-permalink"') |
|
61 | + && !str_contains($content, 'class="heading-permalink"') |
|
62 | 62 | && in_array($this->pageClass, config('markdown.permalinks.pages', [DocumentationPage::class])); |
63 | 63 | } |
64 | 64 |
@@ -12,7 +12,7 @@ |
||
12 | 12 | class DynamicMarkdownLinkProcessor implements MarkdownPostProcessorContract |
13 | 13 | { |
14 | 14 | /** @var array<string, \Hyde\Support\Filesystem\MediaFile>|null */ |
15 | - protected static ?array $assetMapCache = null; |
|
15 | + protected static ? array $assetMapCache = null; |
|
16 | 16 | |
17 | 17 | public static function postprocess(string $html): string |
18 | 18 | { |
@@ -27,14 +27,14 @@ |
||
27 | 27 | $driverTargetPath = $this->getDriverTargetPath(); |
28 | 28 | $driverSourcePath = Hyde::vendorPath('resources/stubs/HydeValetDriver.php', 'realtime-compiler'); |
29 | 29 | |
30 | - if (! is_dir(dirname($driverTargetPath))) { |
|
30 | + if (!is_dir(dirname($driverTargetPath))) { |
|
31 | 31 | $this->error('Herd Valet drivers directory not found. Is Herd installed?'); |
32 | 32 | |
33 | 33 | return Command::FAILURE; |
34 | 34 | } |
35 | 35 | |
36 | - if (file_exists($driverTargetPath) && ! $this->option('force')) { |
|
37 | - if (! $this->confirm('The HydePHP Valet driver for Herd already exists. Do you want to overwrite it?', true)) { |
|
36 | + if (file_exists($driverTargetPath) && !$this->option('force')) { |
|
37 | + if (!$this->confirm('The HydePHP Valet driver for Herd already exists. Do you want to overwrite it?', true)) { |
|
38 | 38 | $this->info('Installation cancelled.'); |
39 | 39 | |
40 | 40 | return Command::SUCCESS; |
@@ -77,7 +77,7 @@ |
||
77 | 77 | 'Source Root' => $hydeConfig['source_root'] ?: '(Project Root)', |
78 | 78 | ], |
79 | 79 | 'Features' => [ |
80 | - 'Enabled Features' => implode(', ', array_map(function ($feature) { |
|
80 | + 'Enabled Features' => implode(', ', array_map(function($feature) { |
|
81 | 81 | return $feature->name; |
82 | 82 | }, $hydeConfig['features'] ?? [])), |
83 | 83 | ], |
@@ -36,7 +36,7 @@ |
||
36 | 36 | /** @return \Hyde\Foundation\Kernel\PageCollection<\Hyde\Pages\MarkdownPost> */ |
37 | 37 | public static function getLatestPosts(): PageCollection |
38 | 38 | { |
39 | - return static::all()->sortByDesc(function (self $post): int { |
|
39 | + return static::all()->sortByDesc(function(self $post): int { |
|
40 | 40 | return $post->date?->getTimestamp() ?? 0; |
41 | 41 | }); |
42 | 42 | } |
@@ -202,7 +202,9 @@ |
||
202 | 202 | while ($this->server->running()) { |
203 | 203 | $this->handleViteOutput(); |
204 | 204 | |
205 | - Sleep::for(100)->milliseconds(); |
|
205 | + Sleep::for(100) { |
|
206 | + ->milliseconds(); |
|
207 | + } |
|
206 | 208 | } |
207 | 209 | } |
208 | 210 |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | protected function getEnvironmentVariables(): array |
102 | 102 | { |
103 | 103 | return Arr::whereNotNull([ |
104 | - 'HYDE_SERVER_REQUEST_OUTPUT' => ! $this->option('no-ansi'), |
|
104 | + 'HYDE_SERVER_REQUEST_OUTPUT' => !$this->option('no-ansi'), |
|
105 | 105 | 'HYDE_SERVER_SAVE_PREVIEW' => $this->parseEnvironmentOption('save-preview'), |
106 | 106 | 'HYDE_SERVER_DASHBOARD' => $this->parseEnvironmentOption('dashboard'), |
107 | 107 | 'HYDE_PRETTY_URLS' => $this->parseEnvironmentOption('pretty-urls'), |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | |
112 | 112 | protected function configureOutput(): void |
113 | 113 | { |
114 | - if (! $this->useBasicOutput()) { |
|
114 | + if (!$this->useBasicOutput()) { |
|
115 | 115 | $this->console = new ConsoleOutput($this->output->isVerbose()); |
116 | 116 | } |
117 | 117 | } |
@@ -125,14 +125,14 @@ discard block |
||
125 | 125 | |
126 | 126 | protected function getOutputHandler(): Closure |
127 | 127 | { |
128 | - return $this->useBasicOutput() ? function (string $type, string $line): void { |
|
128 | + return $this->useBasicOutput() ? function(string $type, string $line): void { |
|
129 | 129 | $this->output->write($line); |
130 | 130 | } : $this->console->getFormatter(); |
131 | 131 | } |
132 | 132 | |
133 | 133 | protected function useBasicOutput(): bool |
134 | 134 | { |
135 | - return $this->option('no-ansi') || ! class_exists(ConsoleOutput::class); |
|
135 | + return $this->option('no-ansi') || !class_exists(ConsoleOutput::class); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | protected function parseEnvironmentOption(string $name): ?string |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | |
172 | 172 | $process = $binary ? Process::command($command)->run() : null; |
173 | 173 | |
174 | - if (! $process || $process->failed()) { |
|
174 | + if (!$process || $process->failed()) { |
|
175 | 175 | $this->warn('Unable to open the site preview in the browser on your system:'); |
176 | 176 | $this->line(sprintf(' %s', str_replace("\n", "\n ", $process ? $process->errorOutput() : "Missing suitable 'open' binary."))); |
177 | 177 | $this->newLine(); |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | |
191 | 191 | protected function runViteProcess(): void |
192 | 192 | { |
193 | - if (! $this->isPortAvailable(5173)) { |
|
193 | + if (!$this->isPortAvailable(5173)) { |
|
194 | 194 | throw new InvalidArgumentException( |
195 | 195 | 'Unable to start Vite server: Port 5173 is already in use. '. |
196 | 196 | 'Please stop any other Vite processes and try again.' |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | while ($this->server->running()) { |
216 | 216 | $this->handleViteOutput(); |
217 | 217 | |
218 | - Sleep::for(100)->milliseconds(); |
|
218 | + Sleep::for (100)->milliseconds(); |
|
219 | 219 | } |
220 | 220 | } |
221 | 221 | |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | |
259 | 259 | protected function ensureNodeModulesAvailable(): void |
260 | 260 | { |
261 | - if (! $this->nodeModulesInstalled()) { |
|
261 | + if (!$this->nodeModulesInstalled()) { |
|
262 | 262 | if ($this->input->isInteractive()) { |
263 | 263 | $this->warn('Node modules are not installed. Vite requires Node dependencies to function.'); |
264 | 264 | |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | |
298 | 298 | $this->info('Node modules installed successfully.'); |
299 | 299 | |
300 | - if (! $this->nodeModulesInstalled()) { |
|
300 | + if (!$this->nodeModulesInstalled()) { |
|
301 | 301 | throw new InvalidArgumentException( |
302 | 302 | 'Node modules installation completed but dependencies are still not available.' |
303 | 303 | ); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | public const BLOG_POST_SCHEMA = [ |
16 | 16 | 'title' => 'string', |
17 | - 'description' => 'string', // Excerpt is also supported |
|
17 | + 'description' => 'string', // Excerpt is also supported |
|
18 | 18 | 'category' => 'string', |
19 | 19 | 'date' => 'string', |
20 | 20 | 'author' => ['string', AuthorSchema::AUTHOR_SCHEMA], |