diff options
Diffstat (limited to 'Zend/tests/traits/property006.phpt')
-rw-r--r-- | Zend/tests/traits/property006.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/traits/property006.phpt b/Zend/tests/traits/property006.phpt index fc21e558b9..bbb364e8fc 100644 --- a/Zend/tests/traits/property006.phpt +++ b/Zend/tests/traits/property006.phpt @@ -4,7 +4,7 @@ Introducing new private variables of the same name in a subclass is ok, and does <?php class Base { - private $hello; + private $hello; } trait THello1 { @@ -28,7 +28,7 @@ class Notice extends Base { } echo "POST-CLASS-GUARD2\n"; ?> ---EXPECT-- +--EXPECT-- PRE-CLASS-GUARD POST-CLASS-GUARD POST-CLASS-GUARD2 |