summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_039.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/closure_039.phpt')
-rw-r--r--Zend/tests/closure_039.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/closure_039.phpt b/Zend/tests/closure_039.phpt
index 5de432459f..f72223d206 100644
--- a/Zend/tests/closure_039.phpt
+++ b/Zend/tests/closure_039.phpt
@@ -5,11 +5,11 @@ Closure 039: Rebinding closures, change scope, same runtime type
class A {
private $x;
-
+
public function __construct($v) {
$this->x = $v;
}
-
+
public function getIncrementor() {
return function() { return ++$this->x; };
}