Eloquent\Phony\Call\CallVerifierFactory::fromCall PHP Method

fromCall() public method

Wrap the supplied call in a verifier.
public fromCall ( Eloquent\Phony\Call\Call $call ) : CallVerifier
$call Eloquent\Phony\Call\Call The call.
return CallVerifier The call verifier.
    public function fromCall(Call $call)
    {
        return new CallVerifier($call, $this->matcherFactory, $this->matcherVerifier, $this->generatorVerifierFactory, $this->iterableVerifierFactory, $this->assertionRecorder, $this->assertionRenderer);
    }