diff options
Diffstat (limited to 'Zend/tests/get_class_vars_003.phpt')
-rw-r--r-- | Zend/tests/get_class_vars_003.phpt | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Zend/tests/get_class_vars_003.phpt b/Zend/tests/get_class_vars_003.phpt index 5fe9f9971b..5659a49704 100644 --- a/Zend/tests/get_class_vars_003.phpt +++ b/Zend/tests/get_class_vars_003.phpt @@ -4,29 +4,29 @@ get_class_vars(): Testing the scope <?php class A { - public $a = 1; - private $b = 2; - private $c = 3; + public $a = 1; + private $b = 2; + private $c = 3; } class B extends A { - static public $aa = 4; - static private $bb = 5; - static protected $cc = 6; + static public $aa = 4; + static private $bb = 5; + static protected $cc = 6; - protected function __construct() { - var_dump(get_class_vars('C')); - } + protected function __construct() { + var_dump(get_class_vars('C')); + } } class C extends B { - public $aaa = 7; - private $bbb = 8; - protected $ccc = 9; + public $aaa = 7; + private $bbb = 8; + protected $ccc = 9; - public function __construct() { - parent::__construct(); - } + public function __construct() { + parent::__construct(); + } } new C; |