Eloquent\Phony\Call\CallData::endTime PHP Метод

endTime() публичный Метод

When generator spies are in use, a call that returns a generator will not be considered complete until the generator has been completely consumed via iteration. Similarly, when iterable spies are in use, a call that returns an iterable will not be considered complete until the iterable has been completely consumed via iteration.
public endTime ( ) : float | null
Результат float | null The time at which the call completed, in seconds since the Unix epoch, or null if the call has not yet completed.
    public function endTime()
    {
        if ($this->endEvent) {
            return $this->endEvent->time();
        }
        return null;
    }