Passed
Push — master ( 43f5df...f468da )
by Caen
03:06 queued 12s
created
packages/framework/src/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 use Hyde\Framework\HydeKernel;
4 4
 use Illuminate\Contracts\Support\Arrayable;
5 5
 
6
-if (! function_exists('hyde')) {
6
+if (!function_exists('hyde')) {
7 7
     /**
8 8
      * Get the available HydeKernel instance.
9 9
      *
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     }
16 16
 }
17 17
 
18
-if (! function_exists('unslash')) {
18
+if (!function_exists('unslash')) {
19 19
     /**
20 20
      * Remove trailing slashes from the start and end of a string.
21 21
      *
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     }
29 29
 }
30 30
 
31
-if (! function_exists('array_map_unique')) {
31
+if (!function_exists('array_map_unique')) {
32 32
     /**
33 33
      * Map a callback over an array and remove duplicates.
34 34
      *
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Concerns/HandlesFoundationCollections.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
 
150 150
     protected function needsToBeBooted(): void
151 151
     {
152
-        if (! $this->booted) {
152
+        if (!$this->booted) {
153 153
             $this->boot();
154 154
         }
155 155
     }
Please login to merge, or discard this patch.