Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class CacheNotFreshEvent extends Event |
||
20 | { |
||
21 | /** |
||
22 | * @var FileCache |
||
23 | */ |
||
24 | private $fileCache; |
||
25 | |||
26 | /** |
||
27 | * @param FileCache $fileCache |
||
28 | */ |
||
29 | 9 | public function __construct(FileCache $fileCache) |
|
32 | 9 | } |
|
33 | |||
34 | /** |
||
35 | * @return FileCache |
||
36 | */ |
||
37 | 7 | public function getFileCache(): FileCache |
|
42 |