summaryrefslogtreecommitdiff
path: root/Zend/tests/class_alias_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/class_alias_005.phpt')
-rw-r--r--Zend/tests/class_alias_005.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/class_alias_005.phpt b/Zend/tests/class_alias_005.phpt
index 47c825b41b..ecc96c8cfa 100644
--- a/Zend/tests/class_alias_005.phpt
+++ b/Zend/tests/class_alias_005.phpt
@@ -3,7 +3,7 @@ Testing static call method using the original class name
--FILE--
<?php
-class foo {
+class foo {
static public function msg() {
print "hello\n";
}
@@ -14,10 +14,10 @@ interface test { }
class_alias('foo', 'baz');
-class bar extends baz {
+class bar extends baz {
public function __construct() {
foo::msg();
- }
+ }
}
new bar;