Eloquent\Phony\Verification\AbstractCardinalityVerifierEventCollection::firstCall PHP Method

firstCall() public method

Get the first call.
public firstCall ( ) : Eloquent\Phony\Call\Call
return 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);
    }