| 1 | <?php |
||
| 8 | class PassportInstallCommand extends Command |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The name and signature of the console command. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $signature = 'module:passport:install |
||
| 16 | {--force : Overwrite keys they already exist} |
||
| 17 | {--length=4096 : The length of the private key}'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The console command description. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $description = 'Run the commands necessary to prepare Passport for use'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Execute the console command. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function handle(ClientRepository $client) |
||
| 44 | } |
||
| 45 |