Passed
Branch improve-types (fff4c9)
by Caen
03:28
created
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/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.
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.
packages/realtime-compiler/src/Concerns/InteractsWithLaravel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     protected function bootApplication(): void
30 30
     {
31
-        if (! isset($this->laravel)) {
31
+        if (!isset($this->laravel)) {
32 32
             $this->createApplication();
33 33
         }
34 34
 
Please login to merge, or discard this patch.
projects/release-manager/release.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 echo "Short version: $shortVersion\n";
23 23
 $composerJson = json_decode(file_get_contents(__DIR__.'./../../packages/hyde/composer.json'), true);
24 24
 $composerJson['require']['hyde/framework'] = "^0.$shortVersion";
25
-file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
25
+file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES));
26 26
 
27 27
 echo "Transforming upcoming release notes... \n";
28 28
 
Please login to merge, or discard this patch.
projects/shelf/single-file-dashboard/dashboard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         'file-viewer' => 'File Viewer',
72 72
     ];
73 73
 
74
-    if (! isset($routes[$page])) {
74
+    if (!isset($routes[$page])) {
75 75
         header('HTTP/1.1 404 Not Found');
76 76
         $page = '404';
77 77
     }
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
                                 $class = $this->type;
368 368
                                 $filename = $this->filename;
369 369
                                 $filepath = $class::$sourceDirectory.'/'.$filename.$class::$fileExtension;
370
-                                if (! file_exists(Hyde::path($filepath))) {
370
+                                if (!file_exists(Hyde::path($filepath))) {
371 371
                                     throw new FileNotFoundException($filepath);
372 372
                                 }
373 373
 
Please login to merge, or discard this patch.
packages/framework/src/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 use Hyde\Framework\HydeKernel;
5 5
 use Illuminate\Support\Collection;
6 6
 
7
-if (! function_exists('hyde')) {
7
+if (!function_exists('hyde')) {
8 8
     /**
9 9
      * Get the available HydeKernel instance.
10 10
      *
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     }
17 17
 }
18 18
 
19
-if (! function_exists('unslash')) {
19
+if (!function_exists('unslash')) {
20 20
     /**
21 21
      * Remove trailing slashes from the start and end of a string.
22 22
      *
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     }
30 30
 }
31 31
 
32
-if (! function_exists('array_map_unique')) {
32
+if (!function_exists('array_map_unique')) {
33 33
     /**
34 34
      * Map a callback over an array and remove duplicates.
35 35
      *
Please login to merge, or discard this patch.
packages/testing/src/helpers.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 /**
7 7
  * @deprecated You should not run tests in a production environment.
8 8
  */
9
-if (! function_exists('backup')) {
9
+if (!function_exists('backup')) {
10 10
     function backup(string $filepath)
11 11
     {
12 12
         if (file_exists($filepath)) {
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     }
16 16
 }
17 17
 
18
-if (! function_exists('restore')) {
18
+if (!function_exists('restore')) {
19 19
     function restore(string $filepath)
20 20
     {
21 21
         if (file_exists($filepath.'.bak')) {
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     }
26 26
 }
27 27
 
28
-if (! function_exists('unlinkIfExists')) {
28
+if (!function_exists('unlinkIfExists')) {
29 29
     function unlinkIfExists(string $filepath)
30 30
     {
31 31
         if (file_exists($filepath)) {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     }
35 35
 }
36 36
 
37
-if (! function_exists('backupDirectory')) {
37
+if (!function_exists('backupDirectory')) {
38 38
     function backupDirectory(string $directory)
39 39
     {
40 40
         if (file_exists($directory)) {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     }
44 44
 }
45 45
 
46
-if (! function_exists('restoreDirectory')) {
46
+if (!function_exists('restoreDirectory')) {
47 47
     function restoreDirectory(string $directory)
48 48
     {
49 49
         if (file_exists($directory.'-bak')) {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     }
54 54
 }
55 55
 
56
-if (! function_exists('deleteDirectory')) {
56
+if (!function_exists('deleteDirectory')) {
57 57
     function deleteDirectory(string $directory)
58 58
     {
59 59
         if (file_exists($directory)) {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     }
63 63
 }
64 64
 
65
-if (! function_exists('createTestPost')) {
65
+if (!function_exists('createTestPost')) {
66 66
     /** @deprecated - You usually don't need an actual post file anymore. Use touch() instead. */
67 67
     function createTestPost(?string $path = null): string
68 68
     {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     }
83 83
 }
84 84
 
85
-if (! function_exists('unlinkUnlessDefault')) {
85
+if (!function_exists('unlinkUnlessDefault')) {
86 86
     function unlinkUnlessDefault(string $filepath)
87 87
     {
88 88
         $protected = [
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             '.gitkeep',
93 93
         ];
94 94
 
95
-        if (! in_array(basename($filepath), $protected)) {
95
+        if (!in_array(basename($filepath), $protected)) {
96 96
             unlink($filepath);
97 97
         }
98 98
     }
Please login to merge, or discard this patch.