CacheTool\Command\OpcacheResetCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('opcache:reset')->setDescription('Resets the contents of the opcode cache')->setHelp('');
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('cachetool:opcache:reset');
 }
OpcacheResetCommand