Passed
Branch decouple-schema-constructors (7e448c)
by Caen
02:54
created
packages/framework/src/Actions/CreatesNewPageSourceFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     public function canSaveFile(string $path): void
36 36
     {
37
-        if (file_exists($path) && ! $this->force) {
37
+        if (file_exists($path) && !$this->force) {
38 38
             throw new FileConflictException($path);
39 39
         }
40 40
     }
Please login to merge, or discard this patch.
packages/framework/src/Actions/PublishesHydeViews.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
     public function execute(): bool|int
45 45
     {
46
-        if (! array_key_exists($this->selected, static::$options)) {
46
+        if (!array_key_exists($this->selected, static::$options)) {
47 47
             return 404;
48 48
         }
49 49
 
Please login to merge, or discard this patch.
packages/framework/src/Actions/PublishesHomepageView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 
42 42
     public function execute(): bool|int
43 43
     {
44
-        if (! array_key_exists($this->selected, static::$homePages)) {
44
+        if (!array_key_exists($this->selected, static::$homePages)) {
45 45
             return 404;
46 46
         }
47 47
 
Please login to merge, or discard this patch.
framework/src/Modules/DataCollections/DataCollectionServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     {
26 26
         if (Features::hasDataCollections()) {
27 27
             // Create the _data directory if it doesn't exist
28
-            if (! is_dir(Hyde::path('_data'))) {
28
+            if (!is_dir(Hyde::path('_data'))) {
29 29
                 mkdir(Hyde::path('_data'));
30 30
             }
31 31
         }
Please login to merge, or discard this patch.
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/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/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/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/Helpers/Meta.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         foreach (array_reverse($meta) as $metaItem) {
43 43
             $substring = substr($metaItem, 6, strpos($metaItem, ' content="') - 6);
44 44
 
45
-            if (! in_array($substring, $existing)) {
45
+            if (!in_array($substring, $existing)) {
46 46
                 $array[] = $metaItem;
47 47
                 $existing[] = $substring;
48 48
             }
Please login to merge, or discard this patch.