mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove no_separation flag
This commit is contained in:
parent
e93aca7167
commit
302933daea
27 changed files with 10 additions and 50 deletions
|
@ -1816,7 +1816,6 @@ ZEND_METHOD(ReflectionFunction, invoke)
|
|||
fci.retval = &retval;
|
||||
fci.param_count = num_args;
|
||||
fci.params = params;
|
||||
fci.no_separation = 1;
|
||||
|
||||
fcc.function_handler = fptr;
|
||||
fcc.called_scope = NULL;
|
||||
|
@ -1878,7 +1877,6 @@ ZEND_METHOD(ReflectionFunction, invokeArgs)
|
|||
fci.retval = &retval;
|
||||
fci.param_count = argc;
|
||||
fci.params = params;
|
||||
fci.no_separation = 1;
|
||||
|
||||
fcc.function_handler = fptr;
|
||||
fcc.called_scope = NULL;
|
||||
|
@ -3206,7 +3204,6 @@ static void reflection_method_invoke(INTERNAL_FUNCTION_PARAMETERS, int variadic)
|
|||
fci.retval = &retval;
|
||||
fci.param_count = argc;
|
||||
fci.params = params;
|
||||
fci.no_separation = 1;
|
||||
|
||||
fcc.function_handler = mptr;
|
||||
fcc.called_scope = intern->ce;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue