Skip to content

Instantly share code, notes, and snippets.

@Vigowebs
Created November 2, 2022 18:28
Show Gist options
  • Save Vigowebs/d22df6636b95aa1d5c8a42daf27e8463 to your computer and use it in GitHub Desktop.
Save Vigowebs/d22df6636b95aa1d5c8a42daf27e8463 to your computer and use it in GitHub Desktop.
Adding Auto-complete Hints to Artisan Commands
class TestCommand extends Command
{
public function handle()
{
$email = $this->anticipate('Find customer by email: ', [
'Gopi@vigowebs.com',
'Vigo@example.com',
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment