@@ -202,7 +202,7 @@ |
||
202 | 202 | * @param callable $action f(entry: Pair) -> mixed|void |
203 | 203 | * @return void |
204 | 204 | */ |
205 | - public function forEach(callable $action): void; |
|
205 | + public function forEach (callable $action): void; |
|
206 | 206 | |
207 | 207 | /** |
208 | 208 | * Returns a List containing all key-value pairs. |
@@ -265,7 +265,7 @@ |
||
265 | 265 | * @param callable $action f(element: mixed) -> void|mixed |
266 | 266 | * @return void |
267 | 267 | */ |
268 | - public function forEach(callable $action): void; |
|
268 | + public function forEach (callable $action): void; |
|
269 | 269 | |
270 | 270 | /** |
271 | 271 | * Returns an element at the given index or the result of calling the defaultValue |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function getEntries(): ListInterface |
40 | 40 | { |
41 | - return listOf(...array_map(function (string $key, $value) { |
|
41 | + return listOf(...array_map(function(string $key, $value) { |
|
42 | 42 | return pair($key, $value); |
43 | 43 | }, array_keys($this->array), $this->array)); |
44 | 44 | |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | * @param callable $action f(entry: Pair<scalar, mixed>) -> mixed|void |
315 | 315 | * @return void |
316 | 316 | */ |
317 | - public function forEach(callable $action): void |
|
317 | + public function forEach (callable $action): void |
|
318 | 318 | { |
319 | 319 | foreach ($this->array as $key => $value) { |
320 | 320 | $action(pair($key, $value)); |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | public function flatten(): ListInterface |
152 | 152 | { |
153 | 153 | $flattenedArray = []; |
154 | - array_walk_recursive($this->array, function ($item) use (&$flattenedArray) { |
|
154 | + array_walk_recursive($this->array, function($item) use (&$flattenedArray) { |
|
155 | 155 | $flattenedArray[] = $item; |
156 | 156 | }); |
157 | 157 | return listOf(...$flattenedArray); |
@@ -176,15 +176,15 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public function joinToString(string $delimiter, string $prefix = null, string $suffix = null): string |
178 | 178 | { |
179 | - $result = implode($delimiter, $this->map(function ($item) { |
|
179 | + $result = implode($delimiter, $this->map(function($item) { |
|
180 | 180 | assertStringable($item, "Elements in list must be convertible to string in order to use joinToString."); |
181 | 181 | return strval($item); |
182 | 182 | })->toArray()); |
183 | 183 | if ($prefix !== null) { |
184 | - $result = $prefix . $result; |
|
184 | + $result = $prefix.$result; |
|
185 | 185 | } |
186 | 186 | if ($suffix !== null) { |
187 | - $result = $result . $suffix; |
|
187 | + $result = $result.$suffix; |
|
188 | 188 | } |
189 | 189 | return $result; |
190 | 190 | } |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | /** |
321 | 321 | * @inheritDoc |
322 | 322 | */ |
323 | - public function forEach(callable $action): void |
|
323 | + public function forEach (callable $action): void |
|
324 | 324 | { |
325 | 325 | foreach ($this->array as $element) { |
326 | 326 | $action($element); |
@@ -123,5 +123,5 @@ |
||
123 | 123 | |
124 | 124 | function in_array($needle, $array): bool |
125 | 125 | { |
126 | - return Functions::in_array($needle, $array); |
|
126 | + return Functions::in_array($needle, $array); |
|
127 | 127 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | if (is_double($value)) { |
14 | 14 | $str = \strval($value); |
15 | 15 | if (strlen($str) == 1) { |
16 | - return sprintf("%1\$.1f",$value); |
|
16 | + return sprintf("%1\$.1f", $value); |
|
17 | 17 | } |
18 | 18 | return \strval($value); |
19 | 19 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | } |
78 | 78 | if (isStringable($needle)) { |
79 | 79 | foreach ($array as $item) { |
80 | - if (strcmp((string)$needle, (string) $item) === 0) { |
|
80 | + if (strcmp((string) $needle, (string) $item) === 0) { |
|
81 | 81 | return true; |
82 | 82 | } |
83 | 83 | } |