PhpBench\Console\Command\ArchiveCommand::configure PHP Method

configure() public method

public configure ( )
    public function configure()
    {
        $this->setName('archive');
        $this->setDescription('Archives and restore suites from and to storage.');
        $this->setHelp(<<<'EOT'
This command will dump (archive) or restore from an archive from and to the
configured storage driver.

Archive contents of Storage:

    $ %command.full_name%

Restore from archive to Storage:

    $ %command.full_name% --restore

Existing entries on both operations will be skipped.
EOT
);
        $this->addOption('restore', null, InputOption::VALUE_NONE, 'Restore the archive');
    }