| 1 | <?php namespace Arcanesoft\Auth\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 = 'auth:publish';  | 
            ||
| 23 | |||
| 24 | /**  | 
            ||
| 25 | * The console command description.  | 
            ||
| 26 | *  | 
            ||
| 27 | * @var string  | 
            ||
| 28 | */  | 
            ||
| 29 | protected $description = 'Publish auth config, migrations, assets and other stuff.';  | 
            ||
| 30 | |||
| 31 | /* ------------------------------------------------------------------------------------------------  | 
            ||
| 32 | | Main Functions  | 
            ||
| 33 | | ------------------------------------------------------------------------------------------------  | 
            ||
| 34 | */  | 
            ||
| 35 | /**  | 
            ||
| 36 | * Execute the console command.  | 
            ||
| 37 | */  | 
            ||
| 38 | 3 | public function handle()  | 
            |
| 48 | }  | 
            ||
| 49 |