Eloquent\Phony\Verification\AbstractCardinalityVerifierEventCollection::firstCall PHP Méthode

firstCall() public méthode

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