1 | <?php |
||
15 | class SimpleCache extends BaseCache |
||
16 | { |
||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public static function getEncryptKey() |
||
24 | |||
25 | /** |
||
26 | * @param string $encryptKey |
||
27 | */ |
||
28 | public static function setEncryptKey($encryptKey) |
||
32 | |||
33 | /** |
||
34 | * @param string $cacheDirectory |
||
35 | */ |
||
36 | public static function setCacheDirectory($cacheDirectory) { |
||
40 | |||
41 | /** |
||
42 | * @param object $object |
||
43 | * @return string |
||
44 | */ |
||
45 | protected static function encode($object) |
||
49 | |||
50 | /** |
||
51 | * @param string $string |
||
52 | * @return object |
||
53 | */ |
||
54 | protected static function decode($string) |
||
58 | } |
||
59 |