| 1 | <?php |
||
| 12 | class BinaryFileCache extends FileCache |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * The cache type file prefix. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $cachePrefix = 'BinaryCache'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The file extension. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected $extension = 'bin'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritDoc} |
||
| 30 | */ |
||
| 31 | protected function readFile($file) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritDoc} |
||
| 38 | */ |
||
| 39 | public function putMetadataInCache(EntityMetadata $metadata) |
||
| 44 | } |
||
| 45 |