summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/flattening002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/traits/flattening002.phpt')
-rw-r--r--Zend/tests/traits/flattening002.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/traits/flattening002.phpt b/Zend/tests/traits/flattening002.phpt
index 65f8e2fee5..abae314d1f 100644
--- a/Zend/tests/traits/flattening002.phpt
+++ b/Zend/tests/traits/flattening002.phpt
@@ -1,5 +1,5 @@
--TEST--
-parent:: works like in a method defined without traits.
+parent:: works like in a method defined without traits.
--FILE--
<?php
error_reporting(E_ALL);
@@ -9,7 +9,7 @@ class Base {
echo 'Hello ';
}
}
-
+
trait SayWorld {
public function sayHello() {
parent::sayHello();
@@ -24,5 +24,5 @@ class MyHelloWorld extends Base {
$o = new MyHelloWorld();
$o->sayHello();
?>
---EXPECT--
+--EXPECT--
Hello World! \ No newline at end of file