| Total Complexity | 7 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class AnyDependency extends Dependency |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var Dependency[] |
||
| 16 | */ |
||
| 17 | private $dependencies; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param Dependency[] $dependencies list of dependencies that this dependency is composed of. |
||
| 21 | * Each array element must be a dependency object. |
||
| 22 | */ |
||
| 23 | public function __construct(array $dependencies = []) |
||
| 26 | } |
||
| 27 | |||
| 28 | public function evaluateDependency(CacheInterface $cache): void |
||
| 32 | } |
||
| 33 | } |
||
| 34 | |||
| 35 | protected function generateDependencyData(CacheInterface $cache) |
||
| 38 | } |
||
| 39 | |||
| 40 | public function isChanged(CacheInterface $cache): bool |
||
| 51 |