diff options
author | Lars Strojny <lstrojny@php.net> | 2012-09-02 14:53:52 +0200 |
---|---|---|
committer | Lars Strojny <lstrojny@php.net> | 2012-09-02 14:53:52 +0200 |
commit | d371a306a24d15646e37c74ee8a9ab81a91f5e25 (patch) | |
tree | bc89b940a6fe8558f7e85b2b631caddee9211dcd | |
parent | 133f610bb18831a6d64061cd6e4e7f7779bf1581 (diff) | |
parent | 069c4486234ce70a6cb2e9b0adb9066f1f2bf343 (diff) | |
download | php-git-d371a306a24d15646e37c74ee8a9ab81a91f5e25.tar.gz |
Merge branch 'PHP-5.4' of git://github.com/php/php-src into PHP-5.4
-rw-r--r-- | Zend/zend_closures.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_closures.c b/Zend/zend_closures.c index 6f2ded3753..c7527b4ff9 100644 --- a/Zend/zend_closures.c +++ b/Zend/zend_closures.c @@ -78,7 +78,7 @@ ZEND_METHOD(Closure, __invoke) /* {{{ */ /* {{{ proto Closure Closure::bind(Closure $old, object $to [, mixed $scope = "static" ] ) Create a closure from another one and bind to another object and scope */ -ZEND_METHOD(Closure, bind) /* {{{ */ +ZEND_METHOD(Closure, bind) { zval *newthis, *zclosure, *scope_arg = NULL; zend_closure *closure; |