Eloquent\Phony\Verification\IterableVerifierFactory::create PHP Method

create() public method

Create a new iterable verifier.
public create ( Eloquent\Phony\Spy\Spy | Eloquent\Phony\Call\Call $subject, array $calls ) : IterableVerifier
$subject Eloquent\Phony\Spy\Spy | Eloquent\Phony\Call\Call The subject.
$calls array
return IterableVerifier The newly created iterable verifier.
    public function create($subject, array $calls)
    {
        return new IterableVerifier($subject, $calls, $this->matcherFactory, $this->callVerifierFactory, $this->assertionRecorder, $this->assertionRenderer);
    }