We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6749520 + 1cad5a1 commit cfc0736Copy full SHA for cfc0736
src/Console/ClientCreatorCommand.php
@@ -23,7 +23,7 @@ class ClientCreatorCommand extends Command
23
*
24
* @var string
25
*/
26
- protected $name = 'oauth2-server:client:create';
+ protected $name = 'oauth2-server:create-client';
27
28
/**
29
* The console command description.
@@ -58,7 +58,7 @@ public function fire()
58
$clientSecret = $this->argument('clientSecret');
59
60
try {
61
- $this->clientRepo->create($clientId, $clientName, $clientSecret);
+ $this->clientRepo->create($clientName, $clientId, $clientSecret);
62
$this->info('Client created successfully');
63
$this->info('Client Name: '.$clientName);
64
$this->info('Client ID: '.$clientId);
0 commit comments