| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class Update extends BaseCommand |
||
| 11 | { |
||
| 12 | protected $signature = 'lang:update'; |
||
| 13 | |||
| 14 | protected $description = 'Updating installed localizations.'; |
||
| 15 | |||
| 16 | protected $action = Action::class; |
||
| 17 | |||
| 18 | protected function ran(): void |
||
| 19 | { |
||
| 20 | $this->locales = Locales::installed(); |
||
| 21 | |||
| 22 | parent::ran(); |
||
| 23 | } |
||
| 24 | |||
| 25 | protected function processor(): ProcessorContract |
||
| 30 | } |
||
| 31 | } |
||
| 32 |