| 1 | <?php |
||
| 13 | class ApcCache implements CacheInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Cached annotations |
||
| 17 | * |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $annotations = []; |
||
| 21 | |||
| 22 | public function getKey($docblock) |
||
| 26 | |||
| 27 | public function set($key, array $annotations) |
||
| 33 | |||
| 34 | public function get($key) |
||
| 42 | |||
| 43 | public function clear() |
||
| 53 | } |
||
| 54 |