Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public function __construct(FqcnFinderInterface $fqcnFinder, CacheInterface $cache, string $cacheKey) |
||
31 | { |
||
32 | if (empty($cacheKey)) { |
||
33 | throw new InvalidArgumentException('Invalid cache key.'); |
||
34 | } |
||
35 | |||
36 | $this->fqcnFinder = $fqcnFinder; |
||
37 | $this->cache = $cache; |
||
38 | $this->cacheKey = $cacheKey; |
||
39 | } |
||
56 |