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

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

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