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

calls() public method

Note that all supplied callbacks will be called in the same invocation.
public calls ( callable $callback )
$callback callable The callback.
    public function calls($callback)
    {
        call_user_func_array(array($this->stub, 'calls'), func_get_args());
        return $this;
    }