| 1 | <?php |
||
| 7 | class FileCacheDriver implements CacheDriverInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $cacheFile; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var bool |
||
| 16 | */ |
||
| 17 | private $cacheEnabled; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $cacheFile |
||
| 21 | * @param bool $cacheEnabled |
||
| 22 | */ |
||
| 23 | public function __construct($cacheFile, $cacheEnabled = true) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function load() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | public function save(SchemaContainer $container) |
||
| 52 | |||
| 53 | } |
||
| 54 |