Beispiel #1
0
 /**
  * @see CConsoleCommand::prompt()
  * @param string $message
  * @param mixed  $defaultValue will be returned when interactive is false
  * @return string
  */
 public function prompt($message, $defaultValue)
 {
     if (!$this->interactive) {
         return $defaultValue;
     }
     return $this->migrateCommand->prompt($message);
 }