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

configure() public method

public configure ( )
    public function configure()
    {
        $this->setName('delete');
        $this->setDescription('Delete suites from storage');
        $this->setHelp(<<<'EOT'
Delete one or many suites from storage:

    $ %command.full_name% --uuid=38aa53bf1edb2cf21391407487d98f37a2e0e2ba

Or with a query

    $ %command.full_name% --query='subject: "benchMd5"'
EOT
);
        SuiteCollectionHandler::configure($this);
    }