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

configure() public method

public configure ( )
    public function configure()
    {
        $this->setName('show');
        $this->setDescription('Show the details of a specific run.');
        $this->addArgument('run_id', InputArgument::REQUIRED, 'Run ID');
        $this->setHelp(<<<'EOT'
Show the results of a specific run.

    $ %command.full_name% <run id>

Any report can be used to display the results:

    $ %command.full_name% <run id> --report=env

EOT
);
        ReportHandler::configure($this);
        TimeUnitHandler::configure($this);
        DumpHandler::configure($this);
    }