diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-09-16 14:16:42 -0300 |
---|---|---|
committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-10-14 12:07:20 -0300 |
commit | 9c144e0d8217d1ef7a83c2498214308b21af749f (patch) | |
tree | d977ba0d8601de477c52f62accf02c120ef06253 /ext/reflection/tests/property_exists.phpt | |
parent | b419732ddb0673dc5b15a67ee4bc7f06dd90d7d0 (diff) | |
download | php-git-9c144e0d8217d1ef7a83c2498214308b21af749f.tar.gz |
Trim trailing whitespace in tests
Diffstat (limited to 'ext/reflection/tests/property_exists.phpt')
-rw-r--r-- | ext/reflection/tests/property_exists.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/reflection/tests/property_exists.phpt b/ext/reflection/tests/property_exists.phpt index c74b775bb7..d7ecefb775 100644 --- a/ext/reflection/tests/property_exists.phpt +++ b/ext/reflection/tests/property_exists.phpt @@ -8,15 +8,15 @@ class A public $a = 1; protected $b = 2; private $c = 3; - + public $empty; public $init = 1; - + function __toString() { return 'obj(' . get_class($this) . ')'; } - + static function test($oc, $props) { echo '===' . __CLASS__ . "===\n"; @@ -30,7 +30,7 @@ class A class B extends A { private $c = 4; - + static function test($oc, $props) { echo '===' . __CLASS__ . "===\n"; @@ -44,7 +44,7 @@ class B extends A class C extends B { private $d = 5; - + static function test($oc, $props) { echo '===' . __CLASS__ . "===\n"; |