summaryrefslogtreecommitdiff
path: root/Zend/tests/bug30140.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug30140.phpt')
-rw-r--r--Zend/tests/bug30140.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug30140.phpt b/Zend/tests/bug30140.phpt
index 1dfb83500f..157e7071cc 100644
--- a/Zend/tests/bug30140.phpt
+++ b/Zend/tests/bug30140.phpt
@@ -3,9 +3,9 @@ Bug #30140 (Problem with array in static properties)
--FILE--
<?php
class A {
- public static $test1 = true;
- public static $test2 = array();
- public static $test3 = "str";
+ public static $test1 = true;
+ public static $test2 = array();
+ public static $test3 = "str";
}
class B extends A {