diff options
Diffstat (limited to 'Zend/tests/traits/property005.phpt')
-rw-r--r-- | Zend/tests/traits/property005.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/traits/property005.phpt b/Zend/tests/traits/property005.phpt index 2fce84e878..5bdbfcdaba 100644 --- a/Zend/tests/traits/property005.phpt +++ b/Zend/tests/traits/property005.phpt @@ -4,7 +4,7 @@ The same rules are applied for properties that are defined in the class hierarch <?php class Base { - private $hello; + private $hello; } trait THello1 { @@ -30,7 +30,7 @@ echo "POST-CLASS-GUARD2\n"; $t = new TraitsTest; $t->hello = "foo"; ?> ---EXPECTF-- +--EXPECTF-- PRE-CLASS-GUARD POST-CLASS-GUARD |