Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php namespace Modules\Menu\Repositories\Cache; |
||
24 | public function allOnline() |
||
25 | { |
||
26 | return $this->cache |
||
27 | ->tags($this->entityName, 'global') |
||
28 | ->remember("{$this->locale}.{$this->entityName}.allOnline", $this->cacheTime, |
||
29 | function () { |
||
30 | return $this->repository->allOnline(); |
||
31 | } |
||
32 | ); |
||
33 | } |
||
34 | } |
||
35 |