summaryrefslogtreecommitdiff
path: root/ext/spl/tests/arrayObject_magicMethods2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/arrayObject_magicMethods2.phpt')
-rw-r--r--ext/spl/tests/arrayObject_magicMethods2.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/spl/tests/arrayObject_magicMethods2.phpt b/ext/spl/tests/arrayObject_magicMethods2.phpt
index 691a9a1e6c..18f0520fcd 100644
--- a/ext/spl/tests/arrayObject_magicMethods2.phpt
+++ b/ext/spl/tests/arrayObject_magicMethods2.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;