Beispiel #1
0
 private function dialogPickMany($text, array $entries)
 {
     $selection = $this->dialoger->dialogCheckList($text, $entries);
     if (empty($selection)) {
         $message = $this->getYouMustPickOneAtLeastExceptionMessage();
         throw new \DialoGit\Exception($message);
     }
     return $selection;
 }