Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class Update extends BaseCommand |
||
10 | { |
||
11 | protected $signature = 'lang:update'; |
||
12 | |||
13 | protected $description = 'Updating installed localizations.'; |
||
14 | |||
15 | protected $action = Action::class; |
||
16 | |||
17 | protected function processor(): ProcessorContract |
||
22 | } |
||
23 | |||
24 | protected function locales(): array |
||
25 | { |
||
26 | return $this->targetLocales(); |
||
27 | } |
||
28 | |||
29 | protected function hasForce(): bool |
||
32 | } |
||
33 | } |
||
34 |