summaryrefslogtreecommitdiff
path: root/tests/lang/returnByReference.009.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/returnByReference.009.phpt')
-rw-r--r--tests/lang/returnByReference.009.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lang/returnByReference.009.phpt b/tests/lang/returnByReference.009.phpt
index 9e7470edbc..0d51a22158 100644
--- a/tests/lang/returnByReference.009.phpt
+++ b/tests/lang/returnByReference.009.phpt
@@ -6,7 +6,7 @@ Returning a references returned by another function
function &returnVarByRef () {
$b=1;
- return $b;
+ return $b;
}
function &testReturnVarByRef() {
@@ -14,7 +14,7 @@ function &testReturnVarByRef() {
}
function returnVal () {
-return 1;
+return 1;
}
function &testReturnValByRef() {