PhpBench\Benchmark\Runner::__construct PHP Method

__construct() public method

public __construct ( BenchmarkFinder $benchmarkFinder, ConfigurableRegistry $executorRegistry, Supplier $envSupplier, $retryThreshold, string $configPath )
$benchmarkFinder BenchmarkFinder
$executorRegistry PhpBench\Registry\ConfigurableRegistry
$envSupplier PhpBench\Environment\Supplier
$configPath string
    public function __construct(BenchmarkFinder $benchmarkFinder, ConfigurableRegistry $executorRegistry, Supplier $envSupplier, $retryThreshold, $configPath)
    {
        $this->logger = new NullLogger();
        $this->benchmarkFinder = $benchmarkFinder;
        $this->executorRegistry = $executorRegistry;
        $this->envSupplier = $envSupplier;
        $this->configPath = $configPath;
        $this->retryThreshold = $retryThreshold;
    }