Method | Description | |
---|---|---|
ask ( string $text, string $default = '', boolean $displayDefault = true ) : string | Writes $text and reads the user's input | |
confirm ( string $text, string $expected = 'y', array $choices = ['Y', 'n'], string $default = 'y', string $errorMessage = 'Invalid choice' ) : boolean | Writes $text (followed by the list of choices) and reads the user response. |
if($dialog->confirm('Are you sure?')) { ... }
if($dialog->confirm('Your choice?', null, array('a', 'b', 'c'))) { ... }