BrowscapPHP\Command\ParserCommand::configure PHP Method

configure() protected method

Configures the current command.
protected configure ( )
    protected function configure()
    {
        $this->setName('browscap:parse')->setDescription('Parses a user agent string and dumps the results.')->addArgument('user-agent', InputArgument::REQUIRED, 'User agent string to analyze', null)->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);
    }