Passed
Push — master ( f15e85...faf39f )
by
unknown
03:31
created
src/Zicht/Itertools/filters.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 function type($class, $strategy = null)
29 29
 {
30 30
     $strategy = conversions\mixed_to_value_getter($strategy);
31
-    return function ($value) use ($class, $strategy) {
31
+    return function($value) use ($class, $strategy) {
32 32
         return $strategy($value) instanceof $class;
33 33
     };
34 34
 }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $haystack = iter\iterable($haystack)->values();
59 59
     }
60 60
     $strategy = conversions\mixed_to_value_getter($strategy);
61
-    return function ($value) use ($haystack, $strategy, $strict) {
61
+    return function($value) use ($haystack, $strategy, $strict) {
62 62
         return in_array($strategy($value), $haystack, $strict);
63 63
     };
64 64
 }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $haystack = iter\iterable($haystack)->values();
81 81
     }
82 82
     $strategy = conversions\mixed_to_value_getter($strategy);
83
-    return function ($value) use ($haystack, $strategy, $strict) {
83
+    return function($value) use ($haystack, $strategy, $strict) {
84 84
         return !in_array($strategy($value), $haystack, $strict);
85 85
     };
86 86
 }
@@ -108,11 +108,11 @@  discard block
 block discarded – undo
108 108
     }
109 109
     $strategy = conversions\mixed_to_value_getter($strategy);
110 110
     if ($strict) {
111
-        return function ($value) use ($expected, $strategy) {
111
+        return function($value) use ($expected, $strategy) {
112 112
             return $expected === $strategy($value);
113 113
         };
114 114
     } else {
115
-        return function ($value) use ($expected, $strategy) {
115
+        return function($value) use ($expected, $strategy) {
116 116
             return $expected == $strategy($value);
117 117
         };
118 118
     }
Please login to merge, or discard this patch.
src/Zicht/Itertools/mappings.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  */
17 17
 function lstrip($chars = " \t\n\r\0\x0B")
18 18
 {
19
-    return function ($value) use ($chars) {
19
+    return function($value) use ($chars) {
20 20
         return ltrim($value, $chars);
21 21
     };
22 22
 }
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
  */
30 30
 function rstrip($chars = " \t\n\r\0\x0B")
31 31
 {
32
-    return function ($value) use ($chars) {
32
+    return function($value) use ($chars) {
33 33
         return rtrim($value, $chars);
34 34
     };
35 35
 }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
  */
43 43
 function strip($chars = " \t\n\r\0\x0B")
44 44
 {
45
-    return function ($value) use ($chars) {
45
+    return function($value) use ($chars) {
46 46
         return trim($value, $chars);
47 47
     };
48 48
 }
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
  */
55 55
 function length()
56 56
 {
57
-    return function ($value) {
57
+    return function($value) {
58 58
         if (is_null($value)) {
59 59
             return 0;
60 60
         }
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
  */
75 75
 function key()
76 76
 {
77
-    return function ($value, $key) {
77
+    return function($value, $key) {
78 78
         return $key;
79 79
     };
80 80
 }
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
  */
87 87
 function lower()
88 88
 {
89
-    return function ($value) {
89
+    return function($value) {
90 90
         return strtolower($value);
91 91
     };
92 92
 }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
  */
99 99
 function upper()
100 100
 {
101
-    return function ($value) {
101
+    return function($value) {
102 102
         return strtoupper($value);
103 103
     };
104 104
 }
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 {
135 135
     $strategies = array_map('\Zicht\Itertools\conversions\mixed_to_value_getter', $strategies);
136 136
 
137
-    return function ($value, $key) use ($strategies) {
137
+    return function($value, $key) use ($strategies) {
138 138
         $res = [];
139 139
         foreach ($strategies as $strategyKey => $strategy) {
140 140
             $res[$strategyKey] = $strategy($value, $key);
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         $max = getrandmax();
157 157
     }
158 158
 
159
-    return function () use ($min, $max) {
159
+    return function() use ($min, $max) {
160 160
         return rand($min, $max);
161 161
     };
162 162
 }
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 function type($strategy = null)
171 171
 {
172 172
     $strategy = conversions\mixed_to_value_getter($strategy);
173
-    return function ($value) use ($strategy) {
173
+    return function($value) use ($strategy) {
174 174
         $value = $strategy($value);
175 175
         return is_object($value) ? get_class($value) : gettype($value);
176 176
     };
Please login to merge, or discard this patch.
src/Zicht/Itertools/conversions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 function mixed_to_closure($closure)
70 70
 {
71 71
     if (is_null($closure)) {
72
-        return function ($value) {
72
+        return function($value) {
73 73
             return $value;
74 74
         };
75 75
     }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         // A \Closure is always callable, but a callable is not always a \Closure.
80 80
         // Checking within this if statement is a slight optimization, preventing an unnecessary function wrap
81 81
         if (is_callable($closure)) {
82
-            $closure = function () use ($closure) {
82
+            $closure = function() use ($closure) {
83 83
                 return call_user_func_array($closure, func_get_args());
84 84
             };
85 85
         } else {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 {
112 112
     if (is_string($strategy)) {
113 113
         $keyParts = explode('.', $strategy);
114
-        $strategy = function ($value) use ($keyParts) {
114
+        $strategy = function($value) use ($keyParts) {
115 115
             foreach ($keyParts as $keyPart) {
116 116
                 if (is_object($value)) {
117 117
                     // property_exists does not distinguish between public, protected, or private properties, hence we need to use reflection
Please login to merge, or discard this patch.
src/Zicht/Itertools/itertools.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 function chain(/* $iterable, $iterable2, ... */)
174 174
 {
175 175
     $iterables = array_map(
176
-        function ($iterable) {
176
+        function($iterable) {
177 177
             return conversions\mixed_to_iterator($iterable);
178 178
         },
179 179
         func_get_args()
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 function map($strategy, $iterable /*, $iterable2, ... */)
306 306
 {
307 307
     $iterables = array_map(
308
-        function ($iterable) {
308
+        function($iterable) {
309 309
             return conversions\mixed_to_iterator($iterable);
310 310
         },
311 311
         array_slice(func_get_args(), 1)
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
     }
479 479
 
480 480
     $strategy = conversions\mixed_to_value_getter($strategy);
481
-    $isValid = function ($value, $key) use ($strategy) {
481
+    $isValid = function($value, $key) use ($strategy) {
482 482
         $tempVarPhp54 = $strategy($value, $key);
483 483
         return !empty($tempVarPhp54);
484 484
     };
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
     switch (sizeof($args)) {
504 504
         case 2:
505 505
             $strategy = conversions\mixed_to_value_getter($args[0]);
506
-            $closure = function ($value, $key) use ($strategy) {
506
+            $closure = function($value, $key) use ($strategy) {
507 507
                 $tempVarPhp54 = call_user_func($strategy, $value, $key);
508 508
                 return !empty($tempVarPhp54);
509 509
             };
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
         case 3:
514 514
             $strategy = conversions\mixed_to_value_getter($args[0]);
515 515
             $userClosure = $args[1];
516
-            $closure = function ($value, $key) use ($strategy, $userClosure) {
516
+            $closure = function($value, $key) use ($strategy, $userClosure) {
517 517
                 return call_user_func($userClosure, call_user_func($strategy, $value, $key));
518 518
             };
519 519
             $iterable = conversions\mixed_to_iterator($args[2]);
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
 function zip(/* $iterable, $iterable2, ... */)
546 546
 {
547 547
     $iterables = array_map(
548
-        function ($iterable) {
548
+        function($iterable) {
549 549
             return conversions\mixed_to_iterator($iterable);
550 550
         },
551 551
         func_get_args()
Please login to merge, or discard this patch.