| 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 object $object |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | protected static function encode($object) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param string $string |
||
| 44 | * @return object |
||
| 45 | */ |
||
| 46 | protected static function decode($string) |
||
| 50 | } |