Skip to content
This repository was archived by the owner on Jun 11, 2020. It is now read-only.

Commit 84196c4

Browse files
committed
run code inspection check
1 parent 2ebb9ff commit 84196c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FixedArray.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public function offsetGet($offset)
167167
* @param mixed $value The array value.
168168
* @return void
169169
*/
170-
public function offsetSet($offset, $value)
170+
public function offsetSet($offset, $value): void
171171
{
172172
$index = $this->getSize();
173173

@@ -185,7 +185,7 @@ public function offsetSet($offset, $value)
185185
* @param mixed $offset The array offset.
186186
* @return void
187187
*/
188-
public function offsetUnset($offset)
188+
public function offsetUnset($offset): void
189189
{
190190
$index = $this->getKeyIndex($offset);
191191

0 commit comments

Comments
 (0)