Skip to content

Commit

Permalink
Use older "choice" method so the package can support Laravel 9.
Browse files Browse the repository at this point in the history
  • Loading branch information
ash-jc-allen committed Sep 14, 2023
1 parent 61a2515 commit 3a784d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Commands/MakeConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ protected function afterPromptingForMissingArguments(InputInterface $input, Outp
return;
}

$type = select('Should the connector support OAuth?', [
$type = $this->choice('Should the connector support OAuth?', [
true => 'Yes',
false => 'No',
]);
Expand Down

0 comments on commit 3a784d8

Please sign in to comment.