| 1 | <?php |
||
| 10 | final class DependencyResolver implements DependencyResolverInterface |
||
| 11 | { |
||
| 12 | /** @var CacheInterface */ |
||
| 13 | private $cache; |
||
| 14 | |||
| 15 | 25 | public function __construct(CacheInterface $cache = null) |
|
| 19 | |||
| 20 | 5 | public function resolveDependencies(string $dependentClass, string $dependentMethod): array |
|
| 33 | |||
| 34 | 5 | private function getDependenciesKey(string $class, string $method = '__construct'): string |
|
| 38 | } |
||
| 39 |