*/ namespace Danmaku\Console\Question; use Symfony\Component\Console\Exception\InvalidArgumentException; use Symfony\Component\Console\Question\ChoiceQuestion as SymfonyChoiceQuestion; /** * Class ChoiceQuestion * * @package Danmaku\Console\Question * @author Marvin Schreurs */ class ChoiceQuestion extends SymfonyChoiceQuestion { protected function isAssoc($array) { return true; } }