@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | $start = $this->start ?? 0; |
182 | 182 | $end = $this->end ?? $containerSize; |
183 | 183 | |
184 | - [$start, $end, $step] = [(int)\round($start), (int)\round($end), (int)\round($step)]; |
|
184 | + [$start, $end, $step] = [(int) \round($start), (int) \round($end), (int) \round($step)]; |
|
185 | 185 | |
186 | 186 | $start = Util::normalizeIndex($start, $containerSize, false); |
187 | 187 | $end = Util::normalizeIndex($end, $containerSize, false); |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | $start = $this->start ?? $containerSize - 1; |
206 | 206 | $end = $this->end ?? -1; |
207 | 207 | |
208 | - [$start, $end, $step] = [(int)\round($start), (int)\round($end), (int)\round($step)]; |
|
208 | + [$start, $end, $step] = [(int) \round($start), (int) \round($end), (int) \round($step)]; |
|
209 | 209 | |
210 | 210 | $start = Util::normalizeIndex($start, $containerSize, false); |
211 | 211 |