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

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

Negative indices are offset from the end of the list. That is, -1 indicates the last element, and -2 indicates the second last element.
public callAt ( integer $index ) : Eloquent\Phony\Call\Call
$index integer The index.
Результат Eloquent\Phony\Call\Call The call.
    public function callAt($index = 0)
    {
        if (!$this->normalizeIndex($this->callCount, $index, $normalized)) {
            throw new UndefinedCallException($index);
        }
        return $this->callVerifierFactory->fromCall($this->calls[$normalized]);
    }