Skip to content

Commit

Permalink
Merge pull request #624 from phil-davis/cs-fixer-20230817
Browse files Browse the repository at this point in the history
Make cs-fixer pass
  • Loading branch information
phil-davis authored Aug 17, 2023
2 parents ac56915 + 43b1118 commit e43d668
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Property.php
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ public function offsetSet($offset, $value): void
{
if (is_int($offset)) {
parent::offsetSet($offset, $value);

// @codeCoverageIgnoreStart
// This will never be reached, because an exception is always
// thrown.
Expand All @@ -430,6 +431,7 @@ public function offsetUnset($offset): void
{
if (is_int($offset)) {
parent::offsetUnset($offset);

// @codeCoverageIgnoreStart
// This will never be reached, because an exception is always
// thrown.
Expand Down

0 comments on commit e43d668

Please sign in to comment.