| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class FileCacheAdapterFactory implements CacheAdapterFactoryInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var FileDriverOptionsProviderInterface |
||
| 26 | */ |
||
| 27 | private $fileDriverOptionsProvider; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * FileCacheAdapterFactory constructor. |
||
| 31 | * @param FileDriverOptionsProviderInterface $fileDriverOptionsProvider |
||
| 32 | */ |
||
| 33 | 6 | public function __construct( |
|
| 37 | 6 | } |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @return CacheAdapterInterface |
||
| 41 | */ |
||
| 42 | 6 | public function createAdapter(): CacheAdapterInterface |
|
| 49 |