@@ -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 | } |