Passed
Branch update-features-class (2947a3)
by Caen
05:28
created
packages/framework/src/Commands/HydeRebuildStaticSiteCommand.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::getDocumentationPagePath())) ||
102 102
             str_starts_with($this->path, Hyde::pathToRelative(Hyde::getMarkdownPostPath())) ||
103 103
             str_starts_with($this->path, Hyde::pathToRelative(Hyde::getBladePagePath())) ||
@@ -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/Commands/HydeBuildRssFeedCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $actionTime = microtime(true);
38 38
 
39
-        if (! $this->runPreflightCheck()) {
39
+        if (!$this->runPreflightCheck()) {
40 40
             return 1;
41 41
         }
42 42
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     protected function runPreflightCheck(): bool
51 51
     {
52
-        if (! RssFeedService::canGenerateFeed()) {
52
+        if (!RssFeedService::canGenerateFeed()) {
53 53
             $this->error('Cannot generate an RSS feed, please check your configuration.');
54 54
 
55 55
             return false;
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydeMakePostCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         $this->line("Date: $creator->date");
67 67
         $this->line("Slug: $creator->slug");
68 68
 
69
-        if (! $this->confirm('Do you wish to continue?', true)) {
69
+        if (!$this->confirm('Do you wish to continue?', true)) {
70 70
             $this->info('Aborting.');
71 71
 
72 72
             return 130;
Please login to merge, or discard this patch.
packages/framework/src/Application.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
          * Enable auto-discovery.
19 19
          */
20
-        $this->app->singleton(PackageManifest::class, function () {
20
+        $this->app->singleton(PackageManifest::class, function() {
21 21
             return new PackageManifest(
22 22
                 new Filesystem,
23 23
                 $this->basePath(),
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
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     /** @inheritDoc */
99 99
     public static function getFromSource(string $sourceFilePath): static
100 100
     {
101
-        return RoutingService::getInstance()->getRoutes()->first(function (RouteContract $route) use ($sourceFilePath) {
101
+        return RoutingService::getInstance()->getRoutes()->first(function(RouteContract $route) use ($sourceFilePath) {
102 102
             return $route->getSourceFilePath() === $sourceFilePath;
103 103
         }) ?? throw new RouteNotFoundException($sourceFilePath);
104 104
     }
Please login to merge, or discard this patch.
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.
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.