summaryrefslogtreecommitdiff
path: root/Zend/tests/bug60536_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug60536_005.phpt')
-rw-r--r--Zend/tests/bug60536_005.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug60536_005.phpt b/Zend/tests/bug60536_005.phpt
index c007e0ae18..6434e450ba 100644
--- a/Zend/tests/bug60536_005.phpt
+++ b/Zend/tests/bug60536_005.phpt
@@ -4,7 +4,7 @@ Introducing new private variables of the same name in a subclass is ok, and does
<?php
class Base {
- protected $hello;
+ protected $hello;
}
trait THello1 {
@@ -27,7 +27,7 @@ class Notice extends Base {
}
echo "POST-CLASS-GUARD2\n";
?>
---EXPECT--
+--EXPECT--
PRE-CLASS-GUARD
POST-CLASS-GUARD
POST-CLASS-GUARD2