Ejemplo n.º 1
0
 /**
  * @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'] : '';
     }
 }