Пример #1
0
 /**
  * Choise multiple answer from given options?
  *
  * @param  string $prompt  The question you want to ask for
  * @param  array  $options Available options
  * @return string
  */
 public function checkboxes($prompt, array $options)
 {
     if ($this->hasSttyAvailable()) {
         $checkboxes = $this->climate->checkboxes($prompt, $options);
         return $checkboxes->prompt();
     }
     return '';
 }