/** * @param string $text * @param array $options * @return mixed|string */ public function prompt($text, $options = []) { if ($this->controller instanceof \yii\console\Controller) { return $this->controller->prompt($text, $options); } else { return isset($options['default']) ? $options['default'] : ''; } }