Skip to content

Commit

Permalink
Fixed missing return type in AbstractList
Browse files Browse the repository at this point in the history
  • Loading branch information
tg666 committed Jan 5, 2023
1 parent ad61230 commit f2ad589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lists/AbstractList.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function offsetGet($offset): string
/**
* {@inheritdoc}
*/
public function offsetSet($offset, $value)
public function offsetSet($offset, $value): void
{
throw new LogicException('Changes of statically defined list is not allowed.');
}
Expand Down

0 comments on commit f2ad589

Please sign in to comment.