1 | <?php |
||
13 | class PhpFileStorage extends FileStorage |
||
14 | { |
||
15 | /** |
||
16 | * @var string settings file suffix. |
||
17 | */ |
||
18 | public $fileSuffix = '.php'; |
||
19 | |||
20 | /** |
||
21 | * @param string $key |
||
22 | * @return mixed |
||
23 | */ |
||
24 | 3 | public function getValue($key) |
|
32 | |||
33 | /** |
||
34 | * @param string $key |
||
35 | * @param mixed $value |
||
36 | * @return bool |
||
37 | */ |
||
38 | 3 | public function setValue($key, $value) |
|
52 | |||
53 | /** |
||
54 | * Forcibly caches data of this file in OPCache or APC. |
||
55 | * @param string $fileName file name. |
||
56 | * @since 1.0.4 |
||
57 | */ |
||
58 | 3 | protected function forceScriptCache($fileName) |
|
72 | } |