diff options
Diffstat (limited to 'tests/lang/passByReference_007.phpt')
-rw-r--r-- | tests/lang/passByReference_007.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lang/passByReference_007.phpt b/tests/lang/passByReference_007.phpt index 51594da0f3..300ce56d7c 100644 --- a/tests/lang/passByReference_007.phpt +++ b/tests/lang/passByReference_007.phpt @@ -7,7 +7,7 @@ class C { global $a; return $a; } - + static function &sreturnReference() { global $a; return $a; @@ -17,7 +17,7 @@ class C { global $a; return $a; } - + function &returnReference() { global $a; return $a; |