Failed Conditions
Push — master ( 28d8ad...89ab07 )
by Arnold
03:34
created
src/ArrayExtension.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function product($array)
54 54
     {
55
-       return isset($array) ? array_product((array)$array) : null;
55
+        return isset($array) ? array_product((array)$array) : null;
56 56
     }
57 57
     
58 58
     /**
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function values($array)
65 65
     {
66
-       return isset($array) ? array_values((array)$array) : null;
66
+        return isset($array) ? array_values((array)$array) : null;
67 67
     }
68 68
     
69 69
     /**
Please login to merge, or discard this patch.