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 3725f75 commit bc437a2Copy full SHA for bc437a2
src/BaseArray.php
@@ -59,7 +59,9 @@ public function offsetGet($offset) {
59
return $this->container[$offset];
60
}
61
62
- return ($this->undefinedOffsetAction)($this->container, $offset);
+ $undefinedOffsetAction = $this->undefinedOffsetAction;
63
+
64
+ return $undefinedOffsetAction($this->container, $offset);
65
66
67
public function offsetSet($offset, $value) {
0 commit comments