| 1 | <?php |
||
| 13 | class ProdCacheProvider implements ProviderInterface |
||
| 14 | { |
||
| 15 | /** @var string */ |
||
| 16 | private $namespace; |
||
| 17 | |||
| 18 | /** @var string */ |
||
| 19 | private $cacheDir; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @Named("namespace=cache_namespace") |
||
| 23 | */ |
||
| 24 | public function __construct(AbstractAppMeta $appMeta, string $namespace) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function get(): CacheProvider |
||
| 40 | } |
||
| 41 |