Merge pull request #185 from ruudk/patch-1

Add return type mixed to offsetGet
This commit is contained in:
Yozhef
2021-12-24 15:14:59 +02:00
committed by GitHub

View File

@@ -27,6 +27,9 @@ class MinkParameters implements \Countable, \IteratorAggregate, \ArrayAccess
return array_key_exists($offset, $this->minkParameters); return array_key_exists($offset, $this->minkParameters);
} }
/**
* @return mixed
*/
#[ReturnTypeWillChange] #[ReturnTypeWillChange]
public function offsetGet($offset) public function offsetGet($offset)
{ {