Skip to content

Commit 3ac7b1e

Browse files
Update ClientCommand.php's user_id description (#1619)
* Update ClientCommand.php's user_id description We get a fair amount of confused passport users on the laravel discord wondering what this user_id is even for. It might help to indicate that the input is optional. * Update ClientCommand.php Co-authored-by: Taylor Otwell <[email protected]>
1 parent b0b0758 commit 3ac7b1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/ClientCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ protected function createClientCredentialsClient(ClientRepository $clients)
133133
protected function createAuthCodeClient(ClientRepository $clients)
134134
{
135135
$userId = $this->option('user_id') ?: $this->ask(
136-
'Which user ID should the client be assigned to?'
136+
'Which user ID should the client be assigned to? (Optional)'
137137
);
138138

139139
$name = $this->option('name') ?: $this->ask(

0 commit comments

Comments
 (0)