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/spl/tests/arrayObject_magicMethods3.phpt | |
| parent | b419732ddb0673dc5b15a67ee4bc7f06dd90d7d0 (diff) | |
| download | php-git-9c144e0d8217d1ef7a83c2498214308b21af749f.tar.gz | |
Trim trailing whitespace in tests
Diffstat (limited to 'ext/spl/tests/arrayObject_magicMethods3.phpt')
| -rw-r--r-- | ext/spl/tests/arrayObject_magicMethods3.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/spl/tests/arrayObject_magicMethods3.phpt b/ext/spl/tests/arrayObject_magicMethods3.phpt index 6231ceabb7..6771c46800 100644 --- a/ext/spl/tests/arrayObject_magicMethods3.phpt +++ b/ext/spl/tests/arrayObject_magicMethods3.phpt @@ -8,24 +8,24 @@ class UsesMagic { public $c = 3; private $priv = 'secret'; - - function __get($name) { + + function __get($name) { $args = func_get_args(); echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; } - function __set($name, $value) { + function __set($name, $value) { $args = func_get_args(); echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; } - function __isset($name) { + function __isset($name) { $args = func_get_args(); echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; } - function __unset($name) { + function __unset($name) { $args = func_get_args(); echo "In " . __METHOD__ . "(" . implode($args, ',') . ")\n"; } - + } $obj = new UsesMagic; |
