PhpBench\Storage\HistoryEntry::__construct PHP Method

__construct() public method

public __construct ( $runId, DateTime $date, $context, $branch, $nbSubjects, $nbIterations, $nbRevolutions, $minTime, $maxTime, $meanTime, $meanRelStDev, $totalTime )
$date DateTime
    public function __construct($runId, \DateTime $date, $context, $branch, $nbSubjects, $nbIterations, $nbRevolutions, $minTime, $maxTime, $meanTime, $meanRelStDev, $totalTime)
    {
        $this->runId = $runId;
        $this->date = $date;
        $this->context = $context;
        $this->branch = $branch;
        $this->nbSubjects = $nbSubjects;
        $this->nbIterations = $nbIterations;
        $this->nbRevolutions = $nbRevolutions;
        $this->minTime = $minTime;
        $this->maxTime = $maxTime;
        $this->meanTime = $meanTime;
        $this->meanRelStDev = $meanRelStDev;
        $this->totalTime = $totalTime;
    }