We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8f4304 commit 0fb01eaCopy full SHA for 0fb01ea
tests/Support/SupportCollectionTest.php
@@ -4970,21 +4970,25 @@ public function __construct($arr)
4970
$this->arr = $arr;
4971
}
4972
4973
+ #[\ReturnTypeWillChange]
4974
public function offsetExists($offset)
4975
{
4976
return isset($this->arr[$offset]);
4977
4978
4979
4980
public function offsetGet($offset)
4981
4982
return $this->arr[$offset];
4983
4984
4985
4986
public function offsetSet($offset, $value)
4987
4988
$this->arr[$offset] = $value;
4989
4990
4991
4992
public function offsetUnset($offset)
4993
4994
unset($this->arr[$offset]);
0 commit comments