Skip to content

Commit 9a9c334

Browse files
committed
Insert client name and id to correct columns
1 parent 6749520 commit 9a9c334

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/ClientCreatorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function fire()
5858
$clientSecret = $this->argument('clientSecret');
5959

6060
try {
61-
$this->clientRepo->create($clientId, $clientName, $clientSecret);
61+
$this->clientRepo->create($clientName, $clientId, $clientSecret);
6262
$this->info('Client created successfully');
6363
$this->info('Client Name: '.$clientName);
6464
$this->info('Client ID: '.$clientId);

0 commit comments

Comments
 (0)