From f6a6c2cedf916508301dda4c8891c5c270217050 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Wed, 7 Mar 2012 14:09:00 +0400 Subject: [PATCH] updated default description --- framework/console/Command.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/framework/console/Command.php b/framework/console/Command.php index 9c6eb5d..e2ca243 100644 --- a/framework/console/Command.php +++ b/framework/console/Command.php @@ -304,7 +304,8 @@ abstract class Command extends \yii\base\Component * Reads input via the readline PHP extension if that's available, or fgets() if readline is not installed. * * @param string $message to echo out before waiting for user input - * @param string $default the default string to be returned when user does not write anything. Defaults to null. + * @param string $default the default string to be returned when user does not write anything. + * Defaults to null, means that default string is disabled. * @return mixed line read as a string, or false if input has been closed */ public function prompt($message, $default = null)