Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | protected function askLocales(string $method): array |
||
13 | { |
||
14 | if ($locales = $this->argument('locales')) { |
||
|
|||
15 | return Arr::wrap($locales); |
||
16 | } |
||
17 | |||
18 | $locales = $this->confirm("Do you want to $method all localizations?") ? $this->getAllLocales() : $this->selectLocales(); |
||
19 | |||
20 | return Arr::wrap($locales); |
||
21 | } |
||
33 |