Skip to content

Commit

Permalink
Merge pull request #185 from ruudk/patch-1
Browse files Browse the repository at this point in the history
Add return type mixed to offsetGet
  • Loading branch information
Yozhef authored Dec 24, 2021
2 parents de01d58 + 237df2e commit 572c34e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Mink/MinkParameters.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public function offsetExists($offset): bool
return array_key_exists($offset, $this->minkParameters);
}

/**
* @return mixed
*/
#[ReturnTypeWillChange]
public function offsetGet($offset)
{
Expand Down

0 comments on commit 572c34e

Please sign in to comment.