1 | <?php |
||
7 | class FileCacheDriver implements CacheDriverInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $cacheFile; |
||
13 | |||
14 | /** |
||
15 | * @param string $cacheFile |
||
16 | */ |
||
17 | public function __construct($cacheFile) |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function load() |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function save(SchemaContainer $container) |
||
41 | |||
42 | } |
||
43 |