Passed
Push — master ( 85dadb...c783b5 )
by
unknown
03:01 queued 14s
created
src/Helpers/ConsoleHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public static function stringToArray(?string $string = null, string $valueDelimiter = ':', string $itemDelimiter = ',')
26 26
     {
27
-        if(is_null($string)) {
27
+        if (is_null($string)) {
28 28
             return [];
29 29
         }
30 30
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             $key = Arr::get($item, 0);
38 38
             $value = Arr::get($item, 1);
39 39
 
40
-            if(is_null($value)) {
40
+            if (is_null($value)) {
41 41
                 $value = $key;
42 42
                 $key = $index;
43 43
             }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         $values = [];
64 64
 
65 65
         foreach ($array as $key => $value) {
66
-            if(is_array($value)) {
66
+            if (is_array($value)) {
67 67
                 continue;
68 68
             }
69 69
 
Please login to merge, or discard this patch.