Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | final class FileDependency extends Dependency |
||
19 | { |
||
20 | /** |
||
21 | * @param string $fileName The file path whose last modification time is used to |
||
22 | * check if the dependency has been changed. |
||
23 | */ |
||
24 | public function __construct(private string $fileName) |
||
26 | 2 | } |
|
27 | |||
28 | 2 | protected function generateDependencyData(CacheInterface $cache): false|int |
|
34 |