1 | <?php |
||
15 | class DependencyResolver implements ArgumentResolver |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | private $dependencies; |
||
22 | |||
23 | /** |
||
24 | * @param JsonMatcherFactory $matcherFactory |
||
25 | * @param JsonLoader $jsonLoader |
||
26 | * @param JsonHelper $jsonHelper |
||
27 | */ |
||
28 | public function __construct( |
||
40 | |||
41 | /** |
||
42 | * @inheritdoc |
||
43 | */ |
||
44 | public function resolveArguments(ReflectionClass $classReflection, array $arguments) |
||
61 | |||
62 | /** |
||
63 | * @param string $className |
||
64 | * @return object |
||
65 | */ |
||
66 | private function getDependency($className) |
||
76 | |||
77 | } |
||
78 |