Esempio n. 1
0
 /**
  * Process property of type 'choice'
  *
  * Method will ask user to select one or the given
  * choices that are available in the property.
  *
  * @see \Aedart\Scaffold\Contracts\Templates\Data\Property::getChoices()
  *
  * @param Property $property
  *
  * @return string Selected choice
  */
 protected function handleChoiceType(Property $property)
 {
     return $this->output->choice($property->getQuestion(), $property->getChoices(), $property->getValue());
 }