/**
  * @see Symfony\Component\Console\Command\Command::configure()
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('weaving-the-web:api:populate-index')->addOption(self::OPTION_INDEX, null, InputOption::VALUE_OPTIONAL, 'The index to repopulate')->addOption(self::OPTION_TYPE, null, InputOption::VALUE_OPTIONAL, 'The type to repopulate')->addOption(self::OPTION_RESET, null, InputOption::VALUE_NONE, 'Reset index before populating')->addOption(self::OPTION_BATCH_SIZE, null, InputOption::VALUE_REQUIRED, 'Index packet size (overrides provider config option)')->setDescription('Populates search indexes from providers');
 }