Passed
Push — master ( 46a695...6de73d )
by Julien
01:29 queued 11s
created
src/Checks/CollectionCheck.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
  */
24 24
 class CollectionCheck implements FluentCheck
25 25
 {
26
-    use TypeCheck,ConstraintCheck,  WithMessage;
26
+    use TypeCheck, ConstraintCheck, WithMessage;
27 27
 
28 28
     /**
29 29
      * @var iterable
Please login to merge, or discard this patch.
src/Constraint/Arrays/ArrayUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
     public static function isAssociative(array $array): bool
9 9
     {
10 10
         $size = \count($array);
11
-        $filteredKeys = \array_filter(\array_keys($array), function($int) {return $int === (int) $int;});
11
+        $filteredKeys = \array_filter(\array_keys($array), function($int) {return $int === (int) $int; });
12 12
         return \count($filteredKeys) !== $size;
13 13
     }
14 14
 
Please login to merge, or discard this patch.