Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | class Add extends Base |
||
26 | { |
||
27 | protected $signature = 'lang:add' |
||
28 | . ' {locales?* : Space-separated list of, eg: de tk it}'; |
||
29 | |||
30 | protected $description = 'Install new localizations.'; |
||
31 | |||
32 | protected $processor = Processor::class; |
||
33 | |||
34 | 62 | protected function targetLocales(): array |
|
35 | { |
||
36 | 62 | return $this->getLocales(); |
|
37 | } |
||
38 | |||
39 | 2 | protected function getAllLocales(): array |
|
42 | } |
||
43 | } |
||
44 |