summaryrefslogtreecommitdiff
path: root/tests/lang/passByReference_008.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/passByReference_008.phpt')
-rw-r--r--tests/lang/passByReference_008.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/lang/passByReference_008.phpt b/tests/lang/passByReference_008.phpt
index 5042b72e4b..ec5f161b40 100644
--- a/tests/lang/passByReference_008.phpt
+++ b/tests/lang/passByReference_008.phpt
@@ -3,15 +3,15 @@ Pass same variable by ref and by value.
--FILE--
<?php
function valRef($x, &$y) {
- var_dump($x, $y);
- $x = 'changed.x';
- $y = 'changed.y';
+ var_dump($x, $y);
+ $x = 'changed.x';
+ $y = 'changed.y';
}
function refVal(&$x, $y) {
- var_dump($x, $y);
- $x = 'changed.x';
- $y = 'changed.y';
+ var_dump($x, $y);
+ $x = 'changed.x';
+ $y = 'changed.y';
}