Passed
Push — master ( fe21a0...2b304b )
by Sven
04:54 queued 02:43
created
src/ArrayUtils.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
     private static function hasKeysByType($type, array $input, $only = false, $allow_empty = false)
23 23
     {
24 24
         if (!is_array($input)) {
25
-          return false;
25
+            return false;
26 26
         }
27 27
         if (!$input) {
28
-          return $allow_empty;
28
+            return $allow_empty;
29 29
         }
30 30
         $count = count(array_filter(array_keys($input), 'is_'.strtolower($type)));
31 31
         return  $only ? $count === count($input) : $count > 0;
Please login to merge, or discard this patch.