Moodle PHP Documentation 4.5
Moodle 4.5dev (Build: 20240606) (d3ae1391abe)
|
Public Member Functions | |
__construct (private DefinitionResolver $definitionResolver) | |
getParameters (ReflectionFunctionAbstract $reflection, array $providedParameters, array $resolvedParameters) | |
Resolves the parameters to use to call the callable. | |
DI\Invoker\DefinitionParameterResolver::getParameters | ( | ReflectionFunctionAbstract | $reflection, |
array | $providedParameters, | ||
array | $resolvedParameters ) |
Resolves the parameters to use to call the callable.
$resolvedParameters
contains parameters that have already been resolved.
Each ParameterResolver must resolve parameters that are not already in $resolvedParameters
. That allows to chain multiple ParameterResolver.
ReflectionFunctionAbstract | $reflection | Reflection object for the callable. |
array | $providedParameters | Parameters provided by the caller. |
array | $resolvedParameters | Parameters resolved (indexed by parameter position). |
array |
Implements Invoker\ParameterResolver\ParameterResolver.