@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | function xrange(int $start, ?int $size = null, int $step = 1): IntRange |
| 14 | 14 | { |
| 15 | - if($size === null) { |
|
| 15 | + if ($size === null) { |
|
| 16 | 16 | [$start, $size] = [0, $start]; |
| 17 | 17 | } |
| 18 | 18 | |