@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | return $this->__call('compile', []); |
90 | 90 | } |
91 | 91 | |
92 | - if (! $this->contents && $this->view) { |
|
92 | + if (!$this->contents && $this->view) { |
|
93 | 93 | if (str_ends_with($this->view, '.blade.php')) { |
94 | 94 | return AnonymousViewCompiler::call($this->view, $this->matter->toArray()); |
95 | 95 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | public function __call(string $method, array $parameters): mixed |
115 | 115 | { |
116 | - if (! isset($this->macros[$method])) { |
|
116 | + if (!isset($this->macros[$method])) { |
|
117 | 117 | throw new BadMethodCallException(sprintf( |
118 | 118 | 'Method %s::%s does not exist.', static::class, $method |
119 | 119 | )); |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | |
131 | 131 | public function previousPageNumber(): false|int |
132 | 132 | { |
133 | - if (! $this->canNavigateBack()) { |
|
133 | + if (!$this->canNavigateBack()) { |
|
134 | 134 | return false; |
135 | 135 | } |
136 | 136 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | |
140 | 140 | public function nextPageNumber(): false|int |
141 | 141 | { |
142 | - if (! $this->canNavigateForward()) { |
|
142 | + if (!$this->canNavigateForward()) { |
|
143 | 143 | return false; |
144 | 144 | } |
145 | 145 | |
@@ -148,11 +148,11 @@ discard block |
||
148 | 148 | |
149 | 149 | public function previous(): false|string|Route |
150 | 150 | { |
151 | - if (! $this->canNavigateBack()) { |
|
151 | + if (!$this->canNavigateBack()) { |
|
152 | 152 | return false; |
153 | 153 | } |
154 | 154 | |
155 | - if (! isset($this->routeBasename)) { |
|
155 | + if (!isset($this->routeBasename)) { |
|
156 | 156 | return $this->formatLink(-1); |
157 | 157 | } |
158 | 158 | |
@@ -161,11 +161,11 @@ discard block |
||
161 | 161 | |
162 | 162 | public function next(): false|string|Route |
163 | 163 | { |
164 | - if (! $this->canNavigateForward()) { |
|
164 | + if (!$this->canNavigateForward()) { |
|
165 | 165 | return false; |
166 | 166 | } |
167 | 167 | |
168 | - if (! isset($this->routeBasename)) { |
|
168 | + if (!isset($this->routeBasename)) { |
|
169 | 169 | return $this->formatLink(+1); |
170 | 170 | } |
171 | 171 |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | namespace { |
6 | 6 | use Hyde\Foundation\HydeKernel; |
7 | 7 | |
8 | - if (! function_exists('hyde')) { |
|
8 | + if (!function_exists('hyde')) { |
|
9 | 9 | /** |
10 | 10 | * Get the available HydeKernel instance. |
11 | 11 | */ |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | } |
16 | 16 | } |
17 | 17 | |
18 | - if (! function_exists('unslash')) { |
|
18 | + if (!function_exists('unslash')) { |
|
19 | 19 | /** |
20 | 20 | * Remove trailing slashes from the start and end of a string. |
21 | 21 | */ |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | use Illuminate\Contracts\Support\Arrayable; |
32 | 32 | use Symfony\Component\Yaml\Yaml; |
33 | 33 | |
34 | - if (! function_exists('\Hyde\hyde')) { |
|
34 | + if (!function_exists('\Hyde\hyde')) { |
|
35 | 35 | /** |
36 | 36 | * Get the available HydeKernel instance. |
37 | 37 | */ |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | - if (! function_exists('\Hyde\unslash')) { |
|
44 | + if (!function_exists('\Hyde\unslash')) { |
|
45 | 45 | /** |
46 | 46 | * Remove trailing slashes from the start and end of a string. |
47 | 47 | */ |
@@ -51,49 +51,49 @@ discard block |
||
51 | 51 | } |
52 | 52 | } |
53 | 53 | |
54 | - if (! function_exists('\Hyde\make_title')) { |
|
54 | + if (!function_exists('\Hyde\make_title')) { |
|
55 | 55 | function make_title(string $value): string |
56 | 56 | { |
57 | 57 | return hyde()->makeTitle($value); |
58 | 58 | } |
59 | 59 | } |
60 | 60 | |
61 | - if (! function_exists('\Hyde\normalize_newlines')) { |
|
61 | + if (!function_exists('\Hyde\normalize_newlines')) { |
|
62 | 62 | function normalize_newlines(string $string): string |
63 | 63 | { |
64 | 64 | return hyde()->normalizeNewlines($string); |
65 | 65 | } |
66 | 66 | } |
67 | 67 | |
68 | - if (! function_exists('\Hyde\strip_newlines')) { |
|
68 | + if (!function_exists('\Hyde\strip_newlines')) { |
|
69 | 69 | function strip_newlines(string $string): string |
70 | 70 | { |
71 | 71 | return hyde()->stripNewlines($string); |
72 | 72 | } |
73 | 73 | } |
74 | 74 | |
75 | - if (! function_exists('\Hyde\trim_slashes')) { |
|
75 | + if (!function_exists('\Hyde\trim_slashes')) { |
|
76 | 76 | function trim_slashes(string $string): string |
77 | 77 | { |
78 | 78 | return hyde()->trimSlashes($string); |
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
82 | - if (! function_exists('\Hyde\evaluate_arrayable')) { |
|
82 | + if (!function_exists('\Hyde\evaluate_arrayable')) { |
|
83 | 83 | function evaluate_arrayable(array|Arrayable $array): array |
84 | 84 | { |
85 | 85 | return $array instanceof Arrayable ? $array->toArray() : $array; |
86 | 86 | } |
87 | 87 | } |
88 | 88 | |
89 | - if (! function_exists('\Hyde\yaml_encode')) { |
|
89 | + if (!function_exists('\Hyde\yaml_encode')) { |
|
90 | 90 | function yaml_encode(mixed $input, int $inline = 2, int $indent = 4, int $flags = 0): string |
91 | 91 | { |
92 | 92 | return Yaml::dump($input instanceof Arrayable ? $input->toArray() : $input, $inline, $indent, $flags); |
93 | 93 | } |
94 | 94 | } |
95 | 95 | |
96 | - if (! function_exists('\Hyde\yaml_decode')) { |
|
96 | + if (!function_exists('\Hyde\yaml_decode')) { |
|
97 | 97 | function yaml_decode(string $input, int $flags = 0): mixed |
98 | 98 | { |
99 | 99 | return Yaml::parse($input, $flags); |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /* |
23 | 23 | * Enable package auto-discovery. |
24 | 24 | */ |
25 | - $this->app->singleton(PackageManifest::class, function (): PackageManifest { |
|
25 | + $this->app->singleton(PackageManifest::class, function(): PackageManifest { |
|
26 | 26 | return new PackageManifest( |
27 | 27 | new Filesystem, |
28 | 28 | $this->basePath(), |
@@ -39,7 +39,7 @@ |
||
39 | 39 | |
40 | 40 | $this->app->singleton(AssetService::class, AssetService::class); |
41 | 41 | |
42 | - $this->app->singleton(MarkdownConverter::class, function (): MarkdownConverter { |
|
42 | + $this->app->singleton(MarkdownConverter::class, function(): MarkdownConverter { |
|
43 | 43 | return new MarkdownConverter(); |
44 | 44 | }); |
45 | 45 |
@@ -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 | } |
@@ -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::sitePath('media')); |
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::sitePath('media/'.unslash(Str::after($filepath, Hyde::path('_media')))); |
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 | } |