diff options
Diffstat (limited to 'ext/spl/tests/arrayObject_magicMethods1.phpt')
-rw-r--r-- | ext/spl/tests/arrayObject_magicMethods1.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/spl/tests/arrayObject_magicMethods1.phpt b/ext/spl/tests/arrayObject_magicMethods1.phpt index ec4812f107..351f68214a 100644 --- a/ext/spl/tests/arrayObject_magicMethods1.phpt +++ b/ext/spl/tests/arrayObject_magicMethods1.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; |