| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | final class FileCacheProvider implements CacheProviderInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $cacheDir; |
||
| 14 | |||
| 15 | public function __construct(string $cacheDir) |
||
| 16 | { |
||
| 17 | $this->cacheDir = $cacheDir; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getCachePool(string $scope): CacheItemPoolInterface |
||
| 23 | } |
||
| 24 | } |
||
| 25 |