summaryrefslogtreecommitdiff
path: root/tests/classes/method_call_variation_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/method_call_variation_001.phpt')
-rw-r--r--tests/classes/method_call_variation_001.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/classes/method_call_variation_001.phpt b/tests/classes/method_call_variation_001.phpt
index 7950b7deb3..9537321b15 100644
--- a/tests/classes/method_call_variation_001.phpt
+++ b/tests/classes/method_call_variation_001.phpt
@@ -13,10 +13,10 @@ In $a->$b[Y]() and $a->X[Y]() both $a->$b[Y] and $a->X[Y] represent a global fun
$c = new C;
$c->functions[0] = 'foo';
$c->functions[1][2][3][4] = 'foo';
-
+
$c->$name[0](1, 2);
$c->$name[1][2][3][4](3, 4);
-
+
$c->functions[0](5, 6);
$c->functions[1][2][3][4](7, 8);
?>