Browscap\Command\DiffCommand::configure PHP Method

configure() protected method

Configures the current command.
protected configure ( )
    protected function configure()
    {
        $defaultResourceFolder = __DIR__ . BuildCommand::DEFAULT_RESOURCES_FOLDER;
        $this->setName('diff')->setDescription('Compare the data contained within two .ini files (regardless of order or format)')->addArgument('left', InputArgument::REQUIRED, 'The left .ini file to compare')->addArgument('right', InputArgument::OPTIONAL, 'The right .ini file to compare')->addOption('resources', null, InputOption::VALUE_REQUIRED, 'Where the resource files are located', $defaultResourceFolder)->addOption('debug', null, InputOption::VALUE_NONE, 'Should the debug mode entered?');
    }