1 | <?php |
||
11 | class ArgumentResolver implements |
||
12 | ArgumentResolverInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var ApplicationInterface |
||
16 | */ |
||
17 | protected $application; |
||
18 | |||
19 | /** |
||
20 | * @param ApplicationInterface $application |
||
21 | */ |
||
22 | 2 | public function __construct( |
|
27 | |||
28 | /** |
||
29 | * @param ReflectionClass $classReflection |
||
30 | * @param array $arguments |
||
31 | * @return array |
||
32 | * |
||
33 | * @SuppressWarnings("unused") |
||
34 | */ |
||
35 | 1 | public function resolveArguments( |
|
47 | |||
48 | /** |
||
49 | * @param string $argument |
||
50 | * @return mixed |
||
51 | */ |
||
52 | 1 | protected function resolveArgument( |
|
68 | } |
||
69 |