1
0
Fork 0

Adjusted interface to reflect values from Console

pull/3983/head
Rob Bast 2015-04-30 12:09:15 +02:00
parent 8cc6e4f67d
commit ee4044efcd
1 changed files with 2 additions and 2 deletions

View File

@ -123,14 +123,14 @@ interface IOInterface
*
* @param string|array $question The question to ask
* @param callback $validator A PHP callback
* @param bool|integer $attempts Max number of times to ask before giving up (false by default, which means infinite)
* @param null|integer $attempts Max number of times to ask before giving up (default of null means infinite)
* @param string $default The default answer if none is given by the user
*
* @return mixed
*
* @throws \Exception When any of the validators return an error
*/
public function askAndValidate($question, $validator, $attempts = false, $default = null);
public function askAndValidate($question, $validator, $attempts = null, $default = null);
/**
* Asks a question to the user and hide the answer.