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