summaryrefslogtreecommitdiff
path: root/Zend/tests/bug64239_3.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug64239_3.phpt')
-rw-r--r--Zend/tests/bug64239_3.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/bug64239_3.phpt b/Zend/tests/bug64239_3.phpt
index 15faeb9852..1a7da60e3c 100644
--- a/Zend/tests/bug64239_3.phpt
+++ b/Zend/tests/bug64239_3.phpt
@@ -3,19 +3,19 @@ Bug #64239 (debug_print_backtrace() changed behavior)
--FILE--
<?php
class A {
- use T2 { t2method as Bmethod; }
+ use T2 { t2method as Bmethod; }
}
class C extends A {
- public function Bmethod() {
- debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
+ public function Bmethod() {
+ debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
}
}
trait T2 {
- public function t2method() {
- debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
- }
+ public function t2method() {
+ debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
+ }
}
$a = new A();