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

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

protected configure ( )
    protected function configure()
    {
        $this->setName('apc:key:fetch')->setDescription('Shows the content of an APC key')->addArgument('key', InputArgument::REQUIRED)->setHelp('');
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('cachetool:apc:key:fetch');
 }
ApcKeyFetchCommand