summaryrefslogtreecommitdiff
path: root/Zend/tests/objects_004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/objects_004.phpt')
-rw-r--r--Zend/tests/objects_004.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/objects_004.phpt b/Zend/tests/objects_004.phpt
index 5dd31eabf2..1cc90384a7 100644
--- a/Zend/tests/objects_004.phpt
+++ b/Zend/tests/objects_004.phpt
@@ -10,15 +10,15 @@ class test {
}
class test2 extends test {
- function foo($arg) {}
+ function foo($arg) {}
}
class test3 extends test {
- function foo(&$arg) {}
+ function foo(&$arg) {}
}
echo "Done\n";
?>
---EXPECTF--
+--EXPECTF--
Warning: Declaration of test3::foo(&$arg) should be compatible with test::foo($arg) in %s on line %d
Done