diff options
Diffstat (limited to 'Zend/tests/bug39297.phpt')
-rw-r--r-- | Zend/tests/bug39297.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug39297.phpt b/Zend/tests/bug39297.phpt index 92f91a5557..36c0af7dbb 100644 --- a/Zend/tests/bug39297.phpt +++ b/Zend/tests/bug39297.phpt @@ -21,8 +21,8 @@ class MyTree implements ArrayAccess { $cannonicalName = strtolower($offset); $this->children[$cannonicalName] = $value; $value->parent = $this; - } - + } + public function offsetGet($offset) { echo "offsetGet()\n"; $cannonicalName = strtolower($offset); |