| Total Complexity | 7 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 83.33% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | class AllDependencies extends Dependency |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var Dependency[] |
||
| 17 | */ |
||
| 18 | private $dependencies; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * ChainedDependency constructor. |
||
| 22 | * @param Dependency[] $dependencies list of dependencies that this dependency is composed of. |
||
| 23 | * Each array element must be a dependency object. |
||
| 24 | */ |
||
| 25 | 1 | public function __construct(array $dependencies = []) |
|
| 26 | { |
||
| 27 | 1 | $this->dependencies = $dependencies; |
|
| 28 | } |
||
| 29 | |||
| 30 | 1 | public function evaluateDependency(CacheInterface $cache): void |
|
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 37 | protected function generateDependencyData(CacheInterface $cache) |
||
| 40 | } |
||
| 41 | |||
| 42 | 1 | public function isChanged(CacheInterface $cache): bool |
|
| 53 |