1 | <?php |
||
11 | class PositionalResolver implements Resolver |
||
12 | { |
||
13 | /** |
||
14 | * @var array |
||
15 | */ |
||
16 | private $params; |
||
17 | |||
18 | /** |
||
19 | * @param array $params list of parameters where parameter index => value |
||
20 | */ |
||
21 | 1 | public function __construct($params) |
|
25 | |||
26 | 1 | public function resolve(ReflectionParameter $param, $next) |
|
36 | } |
||
37 |