summaryrefslogtreecommitdiff
path: root/Zend/tests/bug40815.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug40815.phpt')
-rw-r--r--Zend/tests/bug40815.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug40815.phpt b/Zend/tests/bug40815.phpt
index 3386097523..542a820f52 100644
--- a/Zend/tests/bug40815.phpt
+++ b/Zend/tests/bug40815.phpt
@@ -4,9 +4,9 @@ Bug #40815 (using strings like "class::func" and static methods in set_exception
<?php
class ehandle{
- static public function exh ($ex) {
- echo 'foo';
- }
+ static public function exh ($ex) {
+ echo 'foo';
+ }
}
set_exception_handler("ehandle::exh");