summaryrefslogtreecommitdiff
path: root/Zend/tests/argument_restriction_004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/argument_restriction_004.phpt')
-rw-r--r--Zend/tests/argument_restriction_004.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/argument_restriction_004.phpt b/Zend/tests/argument_restriction_004.phpt
index 8313d6908c..90736e8783 100644
--- a/Zend/tests/argument_restriction_004.phpt
+++ b/Zend/tests/argument_restriction_004.phpt
@@ -6,12 +6,12 @@ class Foo {
}
Abstract Class Base {
- abstract public function test(Foo $foo, array $bar, $option = NULL, $extra = 16777215) ;
+ abstract public function test(Foo $foo, array $bar, $option = NULL, $extra = 16777215) ;
}
class Sub extends Base {
- public function test(Foo $foo, array $bar, $option = NULL, $extra = 0xffffff ) {
- }
+ public function test(Foo $foo, array $bar, $option = NULL, $extra = 0xffffff ) {
+ }
}
?>
--EXPECT--