summaryrefslogtreecommitdiff
path: root/Zend/tests/get_class_vars_007.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/get_class_vars_007.phpt')
-rw-r--r--Zend/tests/get_class_vars_007.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/get_class_vars_007.phpt b/Zend/tests/get_class_vars_007.phpt
index 6aea0e2483..c73ddec492 100644
--- a/Zend/tests/get_class_vars_007.phpt
+++ b/Zend/tests/get_class_vars_007.phpt
@@ -4,13 +4,13 @@ get_class_vars(): Testing with static properties
<?php
class A {
- static public $a, $aa;
- static private $b, $bb;
- static protected $c, $cc;
+ static public $a, $aa;
+ static private $b, $bb;
+ static protected $c, $cc;
- static public function test() {
- var_dump(get_class_vars(__CLASS__));
- }
+ static public function test() {
+ var_dump(get_class_vars(__CLASS__));
+ }
}
var_dump(get_class_vars('A'));