summaryrefslogtreecommitdiff
path: root/Zend/tests/bug37138.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug37138.phpt')
-rw-r--r--Zend/tests/bug37138.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug37138.phpt b/Zend/tests/bug37138.phpt
index c0aa1fdfa8..67dfa987da 100644
--- a/Zend/tests/bug37138.phpt
+++ b/Zend/tests/bug37138.phpt
@@ -4,11 +4,11 @@ Bug #37138 (autoloader tries to load callback'ed self and parent)
<?php
spl_autoload_register(function ($CN) { var_dump ($CN); });
class st {
- public static function e () {echo ("EHLO\n");}
- public static function e2 () {call_user_func (array ('self', 'e'));}
+ public static function e () {echo ("EHLO\n");}
+ public static function e2 () {call_user_func (array ('self', 'e'));}
}
class stch extends st {
- public static function g () {call_user_func (array ('parent', 'e'));}
+ public static function g () {call_user_func (array ('parent', 'e'));}
}
st::e ();
st::e2 ();