BrowscapPHP\Command\UpdateCommand::configure PHP Метод

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

Configures the current command.
protected configure ( )
    protected function configure()
    {
        $this->setName('browscap:update')->setDescription('Fetches an updated INI file for Browscap and overwrites the current PHP file.')->addOption('remote-file', 'r', InputOption::VALUE_OPTIONAL, 'browscap.ini file to download from remote location (possible values are: ' . IniLoader::PHP_INI_LITE . ', ' . IniLoader::PHP_INI . ', ' . IniLoader::PHP_INI_FULL . ')', IniLoader::PHP_INI)->addOption('no-backup', null, InputOption::VALUE_NONE, 'Do not backup the previously existing file')->addOption('debug', 'd', InputOption::VALUE_NONE, 'Should the debug mode entered?')->addOption('cache', 'c', InputOption::VALUE_OPTIONAL, 'Where the cache files are located', $this->defaultCacheFolder);
    }