Eloquent\Phony\Stub\StubVerifier::callsArgument PHP Method

callsArgument() public method

Negative indices are offset from the end of the list. That is, -1 indicates the last element, and -2 indicates the second last element. Note that all supplied callbacks will be called in the same invocation.
public callsArgument ( integer $index )
$index integer The argument index.
    public function callsArgument($index = 0)
    {
        call_user_func_array(array($this->stub, 'callsArgument'), func_get_args());
        return $this;
    }