Total Complexity | 5 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
24 | final class CachePoolClearerCacheWarmer implements CacheWarmerInterface |
||
25 | { |
||
26 | private $poolClearer; |
||
27 | private $pools; |
||
28 | |||
29 | public function __construct(Psr6CacheClearer $poolClearer, array $pools = []) |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function warmUp($cacheDirectory): void |
||
43 | } |
||
44 | } |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function isOptional(): bool |
||
55 |