diff options
author | Zeev Suraski <zeev@php.net> | 2004-02-12 14:12:37 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2004-02-12 14:12:37 +0000 |
commit | fe4239d0d70af3081f58fec1a553e154cd256f68 (patch) | |
tree | 95be8b5af54e36c915f76fbc8f6db81759dc0c46 /tests | |
parent | 77e432c6acf1dd50a104d552dc5e6f214e98f5c2 (diff) | |
download | php-git-fe4239d0d70af3081f58fec1a553e154cd256f68.tar.gz |
Fix test
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/classes/array_access_005.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/classes/array_access_005.phpt b/tests/classes/array_access_005.phpt index be808691b9..5c6271d257 100755 --- a/tests/classes/array_access_005.phpt +++ b/tests/classes/array_access_005.phpt @@ -14,7 +14,7 @@ class Peoples implements ArrayAccess { return array_key_exists($this->person, $index); } - function offsetGet($index) { + function &offsetGet($index) { return $this->person[$index]; } |