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