Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 10 |
Ratio | 83.33 % |
Changes | 0 |
1 | <?php |
||
22 | View Code Duplication | public function allOnlineInLang($lang) |
|
23 | { |
||
24 | return $this->cache |
||
25 | ->tags([$this->entityName, 'global']) |
||
26 | ->remember( |
||
27 | "{$this->locale}.{$this->entityName}.allOnlineInLang", |
||
28 | $this->cacheTime, |
||
29 | function () use ($lang) { |
||
30 | return $this->repository->allOnlineInLang($lang); |
||
31 | } |
||
32 | ); |
||
33 | } |
||
34 | |||
53 |