Passed
Push — master ( 019c74...e9f627 )
by Caen
02:59 queued 14s
created
packages/framework/src/Markdown/Processing/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/Markdown/Processing/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/Console/Commands/RouteListCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
packages/framework/src/Console/Commands/RebuildStaticSiteCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
packages/framework/src/Console/Commands/PublishHomepageCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
packages/framework/src/Support/Models/ValidationResult.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
packages/framework/src/Pages/Concerns/HydePage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
packages/framework/src/Framework/Services/BuildService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function compileStaticPages(): void
41 41
     {
42
-        $this->getDiscoveredModels()->each(function (string $pageClass) {
42
+        $this->getDiscoveredModels()->each(function(string $pageClass) {
43 43
             $this->compilePagesForClass($pageClass);
44 44
         });
45 45
     }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
         $this->withProgressBar(
67 67
             $collection,
68
-            function ($filepath) {
68
+            function($filepath) {
69 69
                 copy($filepath, Hyde::sitePath('media/'.basename($filepath)));
70 70
             }
71 71
         );
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     protected function getDiscoveredModels(): RouteCollection
79 79
     {
80
-        return $this->router->getRoutes()->map(function (Route $route) {
80
+        return $this->router->getRoutes()->map(function(Route $route) {
81 81
             return $route->getPageClass();
82 82
         })->unique();
83 83
     }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     /** @psalm-return \Closure(\Hyde\Support\Models\Route):string */
100 100
     protected function compileRoute(): Closure
101 101
     {
102
-        return function (Route $route) {
102
+        return function(Route $route) {
103 103
             return (new StaticPageBuilder($route->getPage()))->__invoke();
104 104
         };
105 105
     }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
     protected function isItSafeToCleanOutputDirectory(): bool
113 113
     {
114
-        if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) {
114
+        if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) {
115 115
             $this->info('Output directory will not be emptied.');
116 116
 
117 117
             return false;
Please login to merge, or discard this patch.
packages/framework/src/Framework/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.