diff options
Diffstat (limited to 'Zend/tests/traits/error_014.phpt')
-rw-r--r-- | Zend/tests/traits/error_014.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/traits/error_014.phpt b/Zend/tests/traits/error_014.phpt index be1c91977c..3a00124836 100644 --- a/Zend/tests/traits/error_014.phpt +++ b/Zend/tests/traits/error_014.phpt @@ -4,15 +4,15 @@ Trying to override final method <?php trait foo { - public function test() { return 3; } + public function test() { return 3; } } class baz { - final public function test() { return 4; } + final public function test() { return 4; } } class bar extends baz { - use foo { test as public; } + use foo { test as public; } } $x = new bar; |