@@ -8,7 +8,7 @@ |
||
8 | 8 | { |
9 | 9 | public function register(): void |
10 | 10 | { |
11 | - $this->app->singleton(MarkdownConverter::class, function () { |
|
11 | + $this->app->singleton(MarkdownConverter::class, function() { |
|
12 | 12 | return new MarkdownConverter(); |
13 | 13 | }); |
14 | 14 | } |
@@ -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; |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | public function addExtension(string $extensionClassName): void |
56 | 56 | { |
57 | - if (! in_array($extensionClassName, $this->extensions)) { |
|
57 | + if (!in_array($extensionClassName, $this->extensions)) { |
|
58 | 58 | $this->extensions[] = $extensionClassName; |
59 | 59 | } |
60 | 60 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | |
157 | 157 | public function addFeature(string $feature): static |
158 | 158 | { |
159 | - if (! in_array($feature, $this->features)) { |
|
159 | + if (!in_array($feature, $this->features)) { |
|
160 | 160 | $this->features[] = $feature; |
161 | 161 | } |
162 | 162 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | |
209 | 209 | protected function determineIfTorchlightAttributionShouldBeInjected(): bool |
210 | 210 | { |
211 | - return ! $this->isDocumentationPage() |
|
211 | + return !$this->isDocumentationPage() |
|
212 | 212 | && config('torchlight.attribution.enabled', true) |
213 | 213 | && str_contains($this->html, 'Syntax highlighted by torchlight.dev'); |
214 | 214 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | { |
50 | 50 | /** @var DocumentationPage $page */ |
51 | 51 | foreach (DocumentationPage::all() as $page) { |
52 | - if (! in_array($page->identifier, config('docs.exclude_from_search', []))) { |
|
52 | + if (!in_array($page->identifier, config('docs.exclude_from_search', []))) { |
|
53 | 53 | $this->searchIndex->push( |
54 | 54 | $this->generatePageObject($page) |
55 | 55 | ); |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | { |
25 | 25 | $path = static::path($filename); |
26 | 26 | |
27 | - if (! file_exists($path)) { |
|
27 | + if (!file_exists($path)) { |
|
28 | 28 | return $default; |
29 | 29 | } |
30 | 30 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | $path = static::path(basename($filename, '.md').'.md'); |
38 | 38 | |
39 | - if (! file_exists($path)) { |
|
39 | + if (!file_exists($path)) { |
|
40 | 40 | return $default === null ? null : Markdown::render($default); |
41 | 41 | } |
42 | 42 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | { |
49 | 49 | $path = static::path(basename($filename, '.blade.php').'.blade.php'); |
50 | 50 | |
51 | - if (! file_exists($path)) { |
|
51 | + if (!file_exists($path)) { |
|
52 | 52 | return $default === null ? null : Blade::render($default); |
53 | 53 | } |
54 | 54 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | protected static function needsDirectory(string $directory): void |
59 | 59 | { |
60 | - if (! file_exists($directory)) { |
|
60 | + if (!file_exists($directory)) { |
|
61 | 61 | mkdir($directory, recursive: true); |
62 | 62 | } |
63 | 63 | } |
@@ -137,7 +137,7 @@ |
||
137 | 137 | $string = trim($string); |
138 | 138 | |
139 | 139 | // Check if string is an array |
140 | - if (! static::isValueArrayString($string)) { |
|
140 | + if (!static::isValueArrayString($string)) { |
|
141 | 141 | throw new \RuntimeException('Failed parsing BladeMatter array. Input string must follow array syntax.'); |
142 | 142 | } |
143 | 143 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | { |
26 | 26 | return [ |
27 | 27 | 'title' => $this->getNavigationMenuTitle(), |
28 | - 'hidden' => ! $this->getNavigationMenuVisible(), |
|
28 | + 'hidden' => !$this->getNavigationMenuVisible(), |
|
29 | 29 | 'priority' => $this->getNavigationMenuPriority(), |
30 | 30 | ]; |
31 | 31 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | if ($this->page instanceof DocumentationPage) { |
63 | - return $this->page->identifier === 'index' && ! in_array('docs', config('hyde.navigation.exclude', [])); |
|
63 | + return $this->page->identifier === 'index' && !in_array('docs', config('hyde.navigation.exclude', [])); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | if ($this->page instanceof AbstractMarkdownPage) { |