PhpunitMemoryAndTimeUsageListener\Domain\Measurement\TimeMeasurement::toMilliseconds PHP Method

toMilliseconds() protected method

Convert \PHPUnit's reported test time (microseconds) to milliseconds.
protected toMilliseconds ( float $time ) : integer
$time float
return integer
    protected function toMilliseconds($time)
    {
        return (int) round($time * 1000);
    }