summaryrefslogtreecommitdiff
path: root/Zend/tests/bug60825.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug60825.phpt')
-rw-r--r--Zend/tests/bug60825.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/tests/bug60825.phpt b/Zend/tests/bug60825.phpt
index f2f5b602ad..c4c4975f9e 100644
--- a/Zend/tests/bug60825.phpt
+++ b/Zend/tests/bug60825.phpt
@@ -5,11 +5,11 @@ run this with valgrind
--FILE--
<?php
class test {
- public static $x;
- public function __toString() {
- self::$x = $this;
- return __FILE__;
- }
+ public static $x;
+ public function __toString() {
+ self::$x = $this;
+ return __FILE__;
+ }
}
$a = new test;
require_once $a;