diff options
Diffstat (limited to 'Zend/tests/objects_004.phpt')
-rw-r--r-- | Zend/tests/objects_004.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/objects_004.phpt b/Zend/tests/objects_004.phpt index 7c9ca452c8..6af4e813de 100644 --- a/Zend/tests/objects_004.phpt +++ b/Zend/tests/objects_004.phpt @@ -6,15 +6,15 @@ error_reporting=8191 <?php class test { - function foo($arg) {} + function foo($arg) {} } class test2 extends test { - function foo($arg) {} + function foo($arg) {} } class test3 extends test { - function foo(&$arg) {} + function foo(&$arg) {} } ?> |