Example #1
0
 /**
  * Set options for ChoiceAwareElementInterface input types like Select
  *
  * @param InputInterface $input
  * @param $data
  */
 protected static function addOptions(InputInterface $input, $data)
 {
     if (!$input instanceof ChoiceAwareElementInterface || !isset($data['options'])) {
         return;
     }
     $input->setOptions($data['options']);
 }