@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public function remove(int $index) |
191 | 191 | { |
192 | - if (! $this->validIndex($index)) { |
|
192 | + if (!$this->validIndex($index)) { |
|
193 | 193 | throw new OutOfRangeException(); |
194 | 194 | } |
195 | 195 | $value = array_splice($this->array, $index, 1, null)[0]; |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | */ |
203 | 203 | public function set(int $index, $value) |
204 | 204 | { |
205 | - if (! $this->validIndex($index)) { |
|
205 | + if (!$this->validIndex($index)) { |
|
206 | 206 | throw new OutOfRangeException(); |
207 | 207 | } |
208 | 208 |