Passed
Branch kernel-refactor-experiment (803797)
by Caen
03:29
created
packages/framework/src/Models/NavItem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             $route,
52 52
             $route->getSourceModel()->navigationMenuTitle(),
53 53
             $route->getSourceModel()->navigationMenuPriority(),
54
-            ! $route->getSourceModel()->showInNavigation()
54
+            !$route->getSourceModel()->showInNavigation()
55 55
         );
56 56
     }
57 57
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
             $current = Hyde::currentRoute()->getSourceModel();
97 97
         }
98 98
 
99
-        if (! isset($this->route)) {
99
+        if (!isset($this->route)) {
100 100
             return ($current->getRoute()->getRouteKey() === $this->href)
101 101
             || ($current->getRoute()->getRouteKey().'.html' === $this->href);
102 102
         }
Please login to merge, or discard this patch.
packages/framework/src/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/Concerns/Markdown/HasTorchlightIntegration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
     protected function determineIfTorchlightAttributionShouldBeInjected(): bool
16 16
     {
17
-        return ! $this->isDocumentationPage()
17
+        return !$this->isDocumentationPage()
18 18
             && config('torchlight.attribution.enabled', true)
19 19
             && str_contains($this->html, 'Syntax highlighted by torchlight.dev');
20 20
     }
Please login to merge, or discard this patch.
framework/src/Concerns/Markdown/HasConfigurableMarkdownFeatures.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
     public function addFeature(string $feature): self
19 19
     {
20
-        if (! in_array($feature, $this->features)) {
20
+        if (!in_array($feature, $this->features)) {
21 21
             $this->features[] = $feature;
22 22
         }
23 23
 
Please login to merge, or discard this patch.
framework/src/Concerns/Internal/TransfersMediaAssetsForBuildCommands.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         if ($this->canRunBuildAction($collection, 'Media Assets', 'Transferring')) {
27 27
             $this->withProgressBar(
28 28
                 $collection,
29
-                function ($filepath) {
29
+                function($filepath) {
30 30
                     copy($filepath, Hyde::getSiteOutputPath('media/'.basename($filepath)));
31 31
                 }
32 32
             );
Please login to merge, or discard this patch.
packages/framework/src/Concerns/CanBeInNavigation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         }
27 27
 
28 28
         if ($this instanceof DocumentationPage) {
29
-            return $this->slug === 'index' && ! in_array('docs', config('hyde.navigation.exclude', []));
29
+            return $this->slug === 'index' && !in_array('docs', config('hyde.navigation.exclude', []));
30 30
         }
31 31
 
32 32
         if ($this instanceof AbstractMarkdownPage) {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             return config('hyde.navigation.labels.home', 'Home');
100 100
         }
101 101
 
102
-        if (isset($this->title) && ! blank($this->title)) {
102
+        if (isset($this->title) && !blank($this->title)) {
103 103
             return $this->title;
104 104
         }
105 105
 
Please login to merge, or discard this patch.
packages/framework/src/Concerns/ValidatesExistence.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         $filepath = $model::getSourceDirectory().'/'.
24 24
             $slug.$model::getFileExtension();
25 25
 
26
-        if (! file_exists(Hyde::path($filepath))) {
26
+        if (!file_exists(Hyde::path($filepath))) {
27 27
             throw new FileNotFoundException($filepath);
28 28
         }
29 29
     }
Please login to merge, or discard this patch.
packages/framework/src/Concerns/HasDynamicTitle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     public function constructDynamicTitle(): void
17 17
     {
18
-        if (! isset($this->title) || $this->title === '') {
18
+        if (!isset($this->title) || $this->title === '') {
19 19
             $this->title = $this->findTitleForDocument();
20 20
         }
21 21
     }
Please login to merge, or discard this patch.
packages/framework/src/Concerns/InteractsWithDirectories.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function needsDirectory(string $directory): void
16 16
     {
17
-        if (! file_exists($directory)) {
17
+        if (!file_exists($directory)) {
18 18
             mkdir($directory, recursive: true);
19 19
         }
20 20
     }
Please login to merge, or discard this patch.