Documentation

ResolverChain
in package
implements ParameterResolver

Dispatches the call to other resolvers until all parameters are resolved.

Chain of responsibility pattern.

Table of Contents

Interfaces

ParameterResolver
Resolves the parameters to use to call the callable.

Properties

$resolvers  : array<string|int, ParameterResolver>

Methods

__construct()  : mixed
appendResolver()  : void
Push a parameter resolver after the ones already registered.
getParameters()  : array<string|int, mixed>
Resolves the parameters to use to call the callable.
prependResolver()  : void
Insert a parameter resolver before the ones already registered.

Properties

Methods

__construct()

public __construct([array<string|int, mixed> $resolvers = [] ]) : mixed
Parameters
$resolvers : array<string|int, mixed> = []

getParameters()

Resolves the parameters to use to call the callable.

public getParameters(ReflectionFunctionAbstract $reflection, array<string|int, mixed> $providedParameters, array<string|int, mixed> $resolvedParameters) : array<string|int, mixed>

$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.

Parameters
$reflection : ReflectionFunctionAbstract

Reflection object for the callable.

$providedParameters : array<string|int, mixed>

Parameters provided by the caller.

$resolvedParameters : array<string|int, mixed>

Parameters resolved (indexed by parameter position).

Return values
array<string|int, mixed>

        
On this page

Search results