Skip to content

Instantly share code, notes, and snippets.

@acrnogor
Created February 27, 2020 12:05
Show Gist options
  • Save acrnogor/128e0e54d6bc0858eae4ef0de5aed321 to your computer and use it in GitHub Desktop.
Save acrnogor/128e0e54d6bc0858eae4ef0de5aed321 to your computer and use it in GitHub Desktop.
Symfony Console questionaire :)
<?php
$firstName = $io->ask('Enter Author\'s first name');
$lastName = $io->ask('Enter Author\'s last name');
$gender = $io->ask('Enter Author\'s gender');
$birthday = $io->ask('Enter Author\'s birthday', '1940-12-23');
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment