Created
June 13, 2020 15:08
-
-
Save eS-IT/f5765566c2ed760eef9c6c575d70e032 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$this->io->ask('What is your name?'); | |
// default value: | |
$this->io->ask('Where are you from?', 'United States'); | |
// validation: | |
$this->io->ask('Number of workers to start', 1, function ($number) { | |
if (!is_numeric($number)) { | |
throw new \RuntimeException('You must type a number.'); | |
} | |
return (int) $number; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment