summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/closure_002.phpt')
-rw-r--r--Zend/tests/closure_002.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/closure_002.phpt b/Zend/tests/closure_002.phpt
index 023d4ecff1..80483f7994 100644
--- a/Zend/tests/closure_002.phpt
+++ b/Zend/tests/closure_002.phpt
@@ -6,11 +6,11 @@ Closure 002: Lambda with lexical variables (global scope)
$x = 4;
$lambda1 = function () use ($x) {
- echo "$x\n";
+ echo "$x\n";
};
$lambda2 = function () use (&$x) {
- echo "$x\n";
+ echo "$x\n";
};
$lambda1();