InterNations\Component\HttpMock\Expectation::appendMatcher PHP Method

appendMatcher() private method

private appendMatcher ( $matcher, Closure $extractor = null )
$extractor Closure
    private function appendMatcher($matcher, Closure $extractor = null)
    {
        $matcher = $this->createMatcher($matcher);
        if ($extractor) {
            $matcher->setExtractor($extractor);
        }
        $this->matcher[] = $matcher;
    }