Skip to content

Commit

Permalink
fix missing client name in ClientCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
imahmood committed May 22, 2024
1 parent 8ea1dd4 commit 1d6340e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Console/ClientCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ protected function createAuthCodeClient(ClientRepository $clients)
);

$name = $this->option('name') ?: $this->ask(
'What should we name the client?'
'What should we name the client?',
config('app.name').' Auth Code Client'
);

$redirect = $this->option('redirect_uri') ?: $this->ask(
Expand Down

0 comments on commit 1d6340e

Please sign in to comment.