/**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->setName('generate:united:crud')->setDescription('Generates a united crud controller.')->setDefinition(array(new InputOption('entity', '', InputOption::VALUE_REQUIRED, 'The entity, to generate a CRUD controller for.'), new InputOption('bundle', '', InputOption::VALUE_REQUIRED, 'The destination bundle, where the CRUD controller should be generated.')))->setHelp(<<<EOT
The <info>%command.name%</info> command helps you generate a new united CRUD controller, which will be the starting
point for your custom entity management controller.
EOT
);
    }
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->setName('generate:united:bundle')->setDescription('Generates a united admin bundle.')->setDefinition(array(new InputOption('namespace', '', InputOption::VALUE_REQUIRED, 'The namespace of the bundle to create')))->setHelp(<<<EOT
The <info>%command.name%</info> command helps you generate a new united admin bundle, which will be the starting
point for your custom content management implementation.
EOT
);
    }