summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/inheritance002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/traits/inheritance002.phpt')
-rw-r--r--Zend/tests/traits/inheritance002.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/traits/inheritance002.phpt b/Zend/tests/traits/inheritance002.phpt
index d258e43981..0bcaca9f07 100644
--- a/Zend/tests/traits/inheritance002.phpt
+++ b/Zend/tests/traits/inheritance002.phpt
@@ -9,7 +9,7 @@ class Base {
echo 'Hello ';
}
}
-
+
trait SayWorld {
public function sayHello() {
echo 'World!';
@@ -23,5 +23,5 @@ class MyHelloWorld extends Base {
$o = new MyHelloWorld();
$o->sayHello();
?>
---EXPECT--
+--EXPECT--
World! \ No newline at end of file