@@ -160,7 +160,7 @@ |
||
160 | 160 | $array = iterator_to_array($this); |
161 | 161 | array_walk( |
162 | 162 | $array, |
163 | - function (&$value) { |
|
163 | + function(&$value) { |
|
164 | 164 | /** @var GroupedIterator $value */ |
165 | 165 | $value = $value->toArray(); |
166 | 166 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | */ |
17 | 17 | public static 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 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public static function rstrip($chars = " \t\n\r\0\x0B") |
28 | 28 | { |
29 | - return function ($value) use ($chars) { |
|
29 | + return function($value) use ($chars) { |
|
30 | 30 | return rtrim($value, $chars); |
31 | 31 | }; |
32 | 32 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public static function strip($chars = " \t\n\r\0\x0B") |
38 | 38 | { |
39 | - return function ($value) use ($chars) { |
|
39 | + return function($value) use ($chars) { |
|
40 | 40 | return trim($value, $chars); |
41 | 41 | }; |
42 | 42 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public static function length() |
48 | 48 | { |
49 | - return function ($value) { |
|
49 | + return function($value) { |
|
50 | 50 | return sizeof($value); |
51 | 51 | }; |
52 | 52 | } |
@@ -67,7 +67,7 @@ |
||
67 | 67 | */ |
68 | 68 | public function __construct() |
69 | 69 | { |
70 | - parent::__construct(\MultipleIterator::MIT_NEED_ALL | \MultipleIterator::MIT_KEYS_NUMERIC); |
|
70 | + parent::__construct(\MultipleIterator::MIT_NEED_ALL|\MultipleIterator::MIT_KEYS_NUMERIC); |
|
71 | 71 | foreach (func_get_args() as $iterable) { |
72 | 72 | if (!$iterable instanceof \Iterator) { |
73 | 73 | throw new \InvalidArgumentException(sprintf('Not all arguments are iterators')); |
@@ -73,13 +73,13 @@ |
||
73 | 73 | public function __construct(\Closure $func, \Iterator $iterable, $reverse = false) |
74 | 74 | { |
75 | 75 | if ($reverse) { |
76 | - $cmp = function ($a, $b) use ($func) { |
|
76 | + $cmp = function($a, $b) use ($func) { |
|
77 | 77 | $orderA = $a['order']; |
78 | 78 | $orderB = $b['order']; |
79 | 79 | return $orderA == $orderB ? 0 : ($orderA < $orderB ? 1 : -1); |
80 | 80 | }; |
81 | 81 | } else { |
82 | - $cmp = function ($a, $b) use ($func) { |
|
82 | + $cmp = function($a, $b) use ($func) { |
|
83 | 83 | $orderA = $a['order']; |
84 | 84 | $orderB = $b['order']; |
85 | 85 | return $orderA == $orderB ? 0 : ($orderA < $orderB ? -1 : 1); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function __construct(\Closure $valueFunc /* [\Closure $keyFunc], \Iterator $iterable1, [\Iterator $iterable2, [...]] */) |
80 | 80 | { |
81 | - parent::__construct(\MultipleIterator::MIT_NEED_ALL | \MultipleIterator::MIT_KEYS_NUMERIC); |
|
81 | + parent::__construct(\MultipleIterator::MIT_NEED_ALL|\MultipleIterator::MIT_KEYS_NUMERIC); |
|
82 | 82 | $args = func_get_args(); |
83 | 83 | $argsContainsKeyFunc = $args[1] instanceof \Closure; |
84 | 84 | $this->valueFunc = $args[0]; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | if ($argsContainsKeyFunc) { |
87 | 87 | $this->keyFunc = $args[1]; |
88 | 88 | } else { |
89 | - $this->keyFunc = function () { |
|
89 | + $this->keyFunc = function() { |
|
90 | 90 | return $this->genericKeysToKey(func_get_args()); |
91 | 91 | }; |
92 | 92 | } |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | return join( |
125 | 125 | ':', |
126 | 126 | array_map( |
127 | - function ($key) { |
|
127 | + function($key) { |
|
128 | 128 | return (string)$key; |
129 | 129 | }, |
130 | 130 | $keys |
@@ -69,7 +69,7 @@ discard block |
||
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 |
||
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 |
||
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_array($value) && array_key_exists($keyPart, $value)) { |
117 | 117 | $value = $value[$keyPart]; |
@@ -22,7 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | if ($this instanceof \Iterator) { |
24 | 24 | $strategy = conversions\mixed_to_value_getter($strategy); |
25 | - $isValid = function ($value, $key) use ($strategy) { |
|
25 | + $isValid = function($value, $key) use ($strategy) { |
|
26 | 26 | $tempVarPhp54 = $strategy($value, $key); |
27 | 27 | return !empty($tempVarPhp54); |
28 | 28 | }; |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | switch (sizeof($args)) { |
573 | 573 | case 2: |
574 | 574 | $strategy = conversions\mixed_to_value_getter($args[0]); |
575 | - $closure = function ($value, $key) use ($strategy) { |
|
575 | + $closure = function($value, $key) use ($strategy) { |
|
576 | 576 | $tempVarPhp54 = call_user_func($strategy, $value, $key); |
577 | 577 | return !empty($tempVarPhp54); |
578 | 578 | }; |
@@ -582,7 +582,7 @@ discard block |
||
582 | 582 | case 3: |
583 | 583 | $strategy = conversions\mixed_to_value_getter($args[0]); |
584 | 584 | $userClosure = $args[1]; |
585 | - $closure = function ($value, $key) use ($strategy, $userClosure) { |
|
585 | + $closure = function($value, $key) use ($strategy, $userClosure) { |
|
586 | 586 | return call_user_func($userClosure, call_user_func($strategy, $value, $key)); |
587 | 587 | }; |
588 | 588 | $iterable = conversions\mixed_to_iterator($args[2]); |
@@ -16,7 +16,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | $strategies = array_map('\Zicht\Itertools\conversions\mixed_to_value_getter', $strategies); |
139 | 139 | $strategy = conversions\mixed_to_value_getter($strategy); |
140 | 140 | |
141 | - return function ($value, $key) use ($strategies, $strategy, $discardNull, $discardEmptyContainer) { |
|
141 | + return function($value, $key) use ($strategies, $strategy, $discardNull, $discardEmptyContainer) { |
|
142 | 142 | $value = $strategy($value); |
143 | 143 | $res = []; |
144 | 144 | foreach ($strategies as $strategyKey => $strategy) { |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | if ($discardNull || $discardEmptyContainer) { |
148 | 148 | $res = array_filter( |
149 | 149 | $res, |
150 | - function ($value) use ($discardNull, $discardEmptyContainer) { |
|
150 | + function($value) use ($discardNull, $discardEmptyContainer) { |
|
151 | 151 | if (null === $value) { |
152 | 152 | return !$discardNull; |
153 | 153 | } |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | $max = getrandmax(); |
178 | 178 | } |
179 | 179 | |
180 | - return function () use ($min, $max) { |
|
180 | + return function() use ($min, $max) { |
|
181 | 181 | return rand($min, $max); |
182 | 182 | }; |
183 | 183 | } |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | function type($strategy = null) |
192 | 192 | { |
193 | 193 | $strategy = conversions\mixed_to_value_getter($strategy); |
194 | - return function ($value) use ($strategy) { |
|
194 | + return function($value) use ($strategy) { |
|
195 | 195 | $value = $strategy($value); |
196 | 196 | return is_object($value) ? get_class($value) : gettype($value); |
197 | 197 | }; |