We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d76e574 commit 3e480fcCopy full SHA for 3e480fc
1 file changed
ArrayObject.php
@@ -70,20 +70,20 @@ class Container extends \ArrayObject
70
protected $data=array();
71
72
public function offsetExists ($offset)
73
- {
+ {
74
return isset($this->data[$offset]);
75
- }
+ }
76
77
function offsetSet($offset, $value)
78
{
79
if (is_null($offset))
80
81
- $this->data[] = $value;
82
+ $this->data[] = $value;
83
else
84
85
- $this->data[$offset] = $value;
86
+ $this->data[$offset] = $value;
87
}
88
89
function &offsetGet($offset)
0 commit comments