diff options
Diffstat (limited to 'tests/classes/inheritance_002.phpt')
-rwxr-xr-x | tests/classes/inheritance_002.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/classes/inheritance_002.phpt b/tests/classes/inheritance_002.phpt index 6baa575d7c..a5688bba56 100755 --- a/tests/classes/inheritance_002.phpt +++ b/tests/classes/inheritance_002.phpt @@ -52,10 +52,10 @@ class Child_mx2 extends Base_php5 { } } -echo "### PHP4 style\n"; +echo "### PHP 4 style\n"; $c4= new Child_php4(); -echo "### PHP5 style\n"; +echo "### PHP 5 style\n"; $c5= new Child_php5(); echo "### Mixed style 1\n"; @@ -65,10 +65,10 @@ echo "### Mixed style 2\n"; $cm= new Child_mx2(); ?> --EXPECT-- -### PHP4 style +### PHP 4 style string(17) "Child constructor" string(16) "Base constructor" -### PHP5 style +### PHP 5 style string(17) "Child constructor" string(16) "Base constructor" ### Mixed style 1 |