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 c6d4851 commit 3725f75Copy full SHA for 3725f75
src/BaseArray.php
@@ -45,6 +45,11 @@ public function setUndefinedOffsetAction(callable $callback)
45
return $this;
46
}
47
48
+ public function toArray()
49
+ {
50
+ return $this->container;
51
+ }
52
+
53
public function offsetExists($offset) {
54
return isset($this->container[$offset]);
55
src/CompositeKeyArray.php
@@ -4,14 +4,6 @@
4
5
class CompositeKeyArray extends BaseArray
6
{
7
- protected $container;
8
- protected $undefinedOffsetAction;
9
-
10
- public function toArray()
11
- {
12
- return $this->container;
13
- }
14
15
protected $offsets;
16
17
public function offsetExists($offset)
0 commit comments