1 | <?php |
||
14 | trait HasCacheStore |
||
15 | { |
||
16 | protected $cacheStore = null; |
||
17 | |||
18 | /** |
||
19 | * @return Repository |
||
20 | */ |
||
21 | 1 | protected function cacheStore() |
|
28 | |||
29 | /** |
||
30 | * @return Repository |
||
31 | */ |
||
32 | 1 | protected function generateCacheStore() |
|
40 | |||
41 | /** |
||
42 | * @return Repository |
||
43 | */ |
||
44 | protected function generateCacheStoreInMemory() |
||
50 | |||
51 | /** |
||
52 | * @return Repository |
||
53 | * @throws NotFoundException |
||
54 | */ |
||
55 | 1 | protected function generateCacheStoreFromContainer() |
|
63 | } |
||
64 |