1 | <?php namespace Arcanesoft\Settings\Console; |
||
11 | class PublishCommand extends Command |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Properties |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** |
||
18 | * The name and signature of the console command. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $signature = 'settings:publish'; |
||
23 | |||
24 | /** |
||
25 | * The console command description. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $description = 'Publish settings config, migrations.'; |
||
30 | |||
31 | /* ------------------------------------------------------------------------------------------------ |
||
32 | | Main Functions |
||
33 | | ------------------------------------------------------------------------------------------------ |
||
34 | */ |
||
35 | /** |
||
36 | * Execute the console command. |
||
37 | */ |
||
38 | 3 | public function handle() |
|
44 | } |
||
45 |