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

configure() public method

public configure ( )
    public function configure()
    {
        $this->setName('log');
        $this->setDescription('List previously executed and stored benchmark runs.');
        $this->setHelp(<<<'EOT'
Show a list of previously executed benchmark runs.

    $ %command.full_name%

NOTE: This is only possible when a storage driver has been configured.
EOT
);
        // allow common time unit options
        TimeUnitHandler::configure($this);
        $this->addOption('no-pagination', 'P', InputOption::VALUE_NONE, 'Do not paginate');
    }