Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class FileCacheBatchProcessor |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * FileCacheBatchProcessor constructor. |
||
18 | * |
||
19 | * @param FileCacheStore $store |
||
20 | */ |
||
21 | public function __construct(private FileCacheStore $store) |
||
22 | { |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Processes a batch of cache items and stores them. |
||
27 | * |
||
28 | * @param array $batchItems |
||
29 | * @param string $namespace |
||
30 | * @return void |
||
31 | */ |
||
32 | public function process(array $batchItems, string $namespace) |
||
40 | } |
||
41 | } |
||
43 |