configure() protected method

protected configure ( )
    protected function configure()
    {
        parent::configure();
        $this->setName('doctrine:mongodb:schema:create')->addOption('dm', null, InputOption::VALUE_REQUIRED, 'The document manager to use for this command.')->setHelp(<<<EOT
The <info>doctrine:mongodb:schema:create</info> command creates the default document manager's schema:

  <info>./app/console doctrine:mongodb:schema:create</info>

You can also optionally specify the name of a document manager to create the schema for:

  <info>./app/console doctrine:mongodb:schema:create --dm=default</info>
EOT
);
    }