configure() защищенный Метод

См. также: Console\Command\Command
protected configure ( )
    protected function configure()
    {
        parent::configure();
        $this->setName('doctrine:oxm:generate:proxies')->addOption('xem', null, InputOption::VALUE_OPTIONAL, 'The xml-entity manager to use for this command.')->setHelp(<<<EOT
The <info>doctrine:mongodb:generate:proxies</info> command generates proxy classes for your default xml-entity manager:

  <info>./app/console doctrine:oxm:generate:proxies</info>

You can specify the xml-entity manager you want to generate the proxies for:

  <info>./app/console doctrine:oxm:generate:proxies --xem=name</info>
EOT
);
    }