summaryrefslogtreecommitdiff
path: root/Zend/tests/011.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/011.phpt')
-rw-r--r--Zend/tests/011.phpt26
1 files changed, 13 insertions, 13 deletions
diff --git a/Zend/tests/011.phpt b/Zend/tests/011.phpt
index d36ae80ae8..36213af171 100644
--- a/Zend/tests/011.phpt
+++ b/Zend/tests/011.phpt
@@ -4,23 +4,23 @@ property_exists() tests
<?php
class foo {
- public $pp1 = 1;
- private $pp2 = 2;
- protected $pp3 = 3;
+ public $pp1 = 1;
+ private $pp2 = 2;
+ protected $pp3 = 3;
- function bar() {
- var_dump(property_exists("foo","pp1"));
- var_dump(property_exists("foo","pp2"));
- var_dump(property_exists("foo","pp3"));
- }
+ function bar() {
+ var_dump(property_exists("foo","pp1"));
+ var_dump(property_exists("foo","pp2"));
+ var_dump(property_exists("foo","pp3"));
+ }
}
class bar extends foo {
- function test() {
- var_dump(property_exists("foo","pp1"));
- var_dump(property_exists("foo","pp2"));
- var_dump(property_exists("foo","pp3"));
- }
+ function test() {
+ var_dump(property_exists("foo","pp1"));
+ var_dump(property_exists("foo","pp2"));
+ var_dump(property_exists("foo","pp3"));
+ }
}
var_dump(property_exists("foo","pp1"));