1 | <?php |
||
16 | abstract class AbstractCache extends AbstractFeature |
||
17 | { |
||
18 | /** |
||
19 | * Application configuration key |
||
20 | */ |
||
21 | const KEY = 'cache'; |
||
22 | |||
23 | /** |
||
24 | * Cache namespace |
||
25 | */ |
||
26 | const DEFAULT_NAMESPACE = 'application'; |
||
27 | |||
28 | /** |
||
29 | * @param string $namespace |
||
30 | * @return string |
||
31 | */ |
||
32 | protected function resolveNamespace($namespace) |
||
36 | } |
||
37 |