| 1 | <?php |
||
| 11 | trait CacheTrait |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var AdapterInterface |
||
| 16 | */ |
||
| 17 | private $cache; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @Inject("@Cache") |
||
| 21 | * @param AdapterInterface $cache |
||
| 22 | */ |
||
| 23 | public function setCache(AdapterInterface $cache) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return AdapterInterface |
||
| 30 | */ |
||
| 31 | protected function getCache() : AdapterInterface |
||
| 35 | } |
||
| 36 |