1 | <?php |
||
9 | class EditCredentialsCommand extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The console command name. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'credentials:edit'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Encrypt and edit existing credentials. They will be decrypted after saving.'; |
||
24 | |||
25 | /** |
||
26 | * The command handler. |
||
27 | * |
||
28 | * @param \BeyondCode\Credentials\Credentials $credentials |
||
29 | * @return void |
||
30 | */ |
||
31 | public function handle(Credentials $credentials) |
||
59 | } |
||
60 |