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