| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Modules\Translation\Console; |
||
| 24 | public function fire() |
||
| 25 | { |
||
| 26 | foreach ($this->translation->all() as $translation) { |
||
| 27 | foreach (config('laravellocalization.supportedLocales') as $locale => $language) { |
||
| 28 | $this->translation->findByKeyAndLocale($translation->key, $locale); |
||
| 29 | } |
||
| 30 | } |
||
| 31 | $this->info('All translations were cached.'); |
||
| 32 | } |
||
| 33 | } |
||
| 34 |