mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
Fixed bug #60968 (Late static binding doesn't work with ReflectionMethod::invokeArgs())
This commit is contained in:
parent
024e1307c6
commit
d2ca448f07
3 changed files with 8 additions and 2 deletions
|
@ -2920,7 +2920,7 @@ ZEND_METHOD(reflection_method, invokeArgs)
|
|||
fcc.initialized = 1;
|
||||
fcc.function_handler = mptr;
|
||||
fcc.calling_scope = obj_ce;
|
||||
fcc.called_scope = obj_ce;
|
||||
fcc.called_scope = intern->ce;
|
||||
fcc.object_ptr = object;
|
||||
|
||||
result = zend_call_function(&fci, &fcc TSRMLS_CC);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue