1 | <?php |
||
13 | class NamespacedCacheProvider implements ProviderInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var CacheProvider |
||
17 | */ |
||
18 | private $cache; |
||
19 | |||
20 | /** |
||
21 | * @CacheEngine("cache") |
||
22 | * @AppName("appName") |
||
23 | * @CacheVersion("version") |
||
24 | */ |
||
25 | public function __construct(CacheProvider $cache, string $appName = '', string $version = '') |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function get() |
||
38 | } |
||
39 |