Passed
Push — main ( bcd41f...886f17 )
by Breno
02:00
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 first(iterable $items, callable $callback, $default = null, int $mode = CALLBACK_USE_VALUE)
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
 function has(array $items, ...$keys): bool
71 71
 {
72
-    return ! array_diff($keys, array_keys($items));
72
+    return !array_diff($keys, array_keys($items));
73 73
 }
74 74
 
75 75
 function only(array $items, ...$keys): array
Please login to merge, or discard this patch.