Passed
Push — main ( a5f639...bcd41f )
by Breno
02:36
created
src/array_functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 function none(iterable $items, callable $callback, int $mode = 0): bool
12 12
 {
13
-    return ! some($items, $callback, $mode);
13
+    return !some($items, $callback, $mode);
14 14
 }
15 15
 
16 16
 function at_most(int $n, iterable $items, callable $callback, int $mode = CALLBACK_USE_VALUE): bool
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
 function has(array $items, ...$keys): bool
101 101
 {
102
-    return ! array_diff($keys, array_keys($items));
102
+    return !array_diff($keys, array_keys($items));
103 103
 }
104 104
 
105 105
 function only(array $items, ...$keys): array
Please login to merge, or discard this patch.