Eloquent\Phony\Verification\AbstractCardinalityVerifierEventCollection::lastCall PHP Метод

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

Get the last call.
public lastCall ( ) : Eloquent\Phony\Call\Call
Результат Eloquent\Phony\Call\Call The call.
    public function lastCall()
    {
        if ($this->callCount) {
            return $this->callVerifierFactory->fromCall($this->calls[$this->callCount - 1]);
        }
        throw new UndefinedCallException(0);
    }