phpbb\console\command\update\check::configure PHP Method

configure() protected method

Sets the name and description of the command.
protected configure ( ) : null
return null
    protected function configure()
    {
        $this->setName('update:check')->setDescription($this->language->lang('CLI_DESCRIPTION_UPDATE_CHECK'))->addArgument('ext-name', InputArgument::OPTIONAL, $this->language->lang('CLI_DESCRIPTION_UPDATE_CHECK_ARGUMENT_1'))->addOption('stability', null, InputOption::VALUE_REQUIRED, $this->language->lang('CLI_DESCRIPTION_UPDATE_CHECK_OPTION_STABILITY'))->addOption('cache', 'c', InputOption::VALUE_NONE, $this->language->lang('CLI_DESCRIPTION_UPDATE_CHECK_OPTION_CACHE'));
    }