Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class LangReset extends BaseCommand |
||
10 | { |
||
11 | protected $signature = 'lang:reset' |
||
12 | . ' {locales?* : Space-separated list of, eg: de tk it}' |
||
13 | . ' {--j|json : Install JSON files}' |
||
14 | . ' {--f|full : Reset files without excluded keys}'; |
||
15 | |||
16 | protected $description = 'Resets installed locations.'; |
||
17 | |||
18 | protected $action = 'reset'; |
||
19 | |||
20 | protected $action_default = true; |
||
21 | |||
22 | public function handle() |
||
35 |