Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 9 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | final class LangUpdate extends BaseCommand |
||
8 | { |
||
9 | protected $signature = 'lang:update' |
||
10 | . ' {--j|json : Update JSON files}' |
||
11 | . ' {--jet : Update Jetstream JSON files. This is an alias for "--json" key. }' |
||
12 | . ' {--fortify : Update Fortify JSON files. This is an alias for "--json" key. }'; |
||
13 | |||
14 | protected $description = 'Updating installed localizations.'; |
||
15 | |||
16 | public function handle() |
||
27 |