diff options
Diffstat (limited to 'Zend/tests/closure_036.phpt')
-rw-r--r-- | Zend/tests/closure_036.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/closure_036.phpt b/Zend/tests/closure_036.phpt index 77d7ce6906..8dd403fd56 100644 --- a/Zend/tests/closure_036.phpt +++ b/Zend/tests/closure_036.phpt @@ -5,11 +5,11 @@ Closure 036: Rebinding closures, keep calling scope class A { private $x; - + public function __construct($v) { $this->x = $v; } - + public function getIncrementor() { return function() { return ++$this->x; }; } |