CacheTool\Command\ApcBinLoadCommand::configure PHP Метод

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

protected configure ( )
    protected function configure()
    {
        $this->setName('apc:bin:load')->setDescription('Load a binary dump into the APC file and user variables')->addOption('--file', '-f', InputOption::VALUE_OPTIONAL, "File to read binary data from")->addOption('--no-verification', '-a', InputOption::VALUE_NONE, "Don't perform MD5 & CRC32 verification before loading data")->setHelp('');
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('cachetool:apc:bin:load');
 }
ApcBinLoadCommand