Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class PublishCommand extends Command |
||
8 | { |
||
9 | /** |
||
10 | * The console command name. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $signature = 'lang-switch:publish {--force}'; |
||
15 | /** |
||
16 | * The console command description. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $description = "publish translation helper's assets, configuration, config and migration files. If you want overwrite the existing files, you can add the `--force` option"; |
||
21 | |||
22 | /** |
||
23 | * Execute the console command. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | public function handle() |
||
37 |