| 1 | <?php |
||
| 12 | class ArrayCache implements CacheInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Cached annotations |
||
| 16 | * |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $annotations = []; |
||
| 20 | |||
| 21 | public function getKey($docblock) |
||
| 25 | |||
| 26 | public function set($key, array $annotations) |
||
| 32 | |||
| 33 | public function get($key) |
||
| 41 | |||
| 42 | public function clear() |
||
| 46 | |||
| 47 | } |
||
| 48 |