Passed
Branch decouple-schema-constructors (7e448c)
by Caen
02:54
created
packages/framework/src/Modules/Markdown/CodeblockFilepathProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.
packages/framework/src/Modules/Markdown/BladeDownProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
packages/framework/src/Services/MarkdownService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
packages/framework/src/Actions/BladeMatterParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
packages/framework/src/Models/Image.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
 
139 139
     public function getLink(): string
140 140
     {
141
-        if (! $this->getSource()) {
141
+        if (!$this->getSource()) {
142 142
             return '';
143 143
         }
144 144
 
Please login to merge, or discard this patch.
packages/framework/src/Models/Metadata/LinkItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
             return '<link rel="'.e($this->rel).'" href="'.e($this->href).'">';
17 17
         }
18 18
 
19
-        $attributes = collect($this->attr)->map(function ($value, $key) {
19
+        $attributes = collect($this->attr)->map(function($value, $key) {
20 20
             return e($key).'="'.e($value).'"';
21 21
         })->implode(' ');
22 22
 
Please login to merge, or discard this patch.
packages/framework/src/Actions/Constructors/FindsNavigationDataForPage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     {
28 28
         return [
29 29
             'title' => $this->getNavigationMenuTitle(),
30
-            'hidden' => ! $this->getNavigationMenuVisible(),
30
+            'hidden' => !$this->getNavigationMenuVisible(),
31 31
             'priority' => $this->getNavigationMenuPriority(),
32 32
         ];
33 33
     }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         }
61 61
 
62 62
         if ($this->page instanceof DocumentationPage) {
63
-            return $this->page->identifier === 'index' && ! in_array($this->page->routeKey, config('hyde.navigation.exclude', []));
63
+            return $this->page->identifier === 'index' && !in_array($this->page->routeKey, config('hyde.navigation.exclude', []));
64 64
         }
65 65
 
66 66
         if ($this->page->matter('navigation.hidden', false)) {
Please login to merge, or discard this patch.
packages/framework/src/Services/BuildService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function compileStaticPages(): void
36 36
     {
37
-        $this->getDiscoveredModels()->each(function (string $pageClass) {
37
+        $this->getDiscoveredModels()->each(function(string $pageClass) {
38 38
             $this->compilePagesForClass($pageClass);
39 39
         });
40 40
     }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
         $this->withProgressBar(
62 62
             $collection,
63
-            function ($filepath) {
63
+            function($filepath) {
64 64
                 copy($filepath, Hyde::getSiteOutputPath('media/'.basename($filepath)));
65 65
             }
66 66
         );
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     protected function getDiscoveredModels(): RouteCollection
74 74
     {
75
-        return $this->router->getRoutes()->map(function (Route $route) {
75
+        return $this->router->getRoutes()->map(function(Route $route) {
76 76
             return $route->getPageType();
77 77
         })->unique();
78 78
     }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     /** @psalm-return \Closure(Route):string */
95 95
     protected function compileRoute(): \Closure
96 96
     {
97
-        return function (Route $route) {
97
+        return function(Route $route) {
98 98
             return (new StaticPageBuilder($route->getSourceModel()))->__invoke();
99 99
         };
100 100
     }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     protected function isItSafeToCleanOutputDirectory(): bool
108 108
     {
109
-        if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) {
109
+        if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) {
110 110
             $this->info('Output directory will not be emptied.');
111 111
 
112 112
             return false;
Please login to merge, or discard this patch.
packages/framework/src/Models/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     /** @inheritDoc */
113 113
     public static function getFromSource(string $sourceFilePath): static
114 114
     {
115
-        return Hyde::routes()->first(function (RouteContract $route) use ($sourceFilePath) {
115
+        return Hyde::routes()->first(function(RouteContract $route) use ($sourceFilePath) {
116 116
             return $route->getSourceFilePath() === $sourceFilePath;
117 117
         }) ?? throw new RouteNotFoundException($sourceFilePath);
118 118
     }
Please login to merge, or discard this patch.