Eloquent\Phony\Phpunit\PhpunitMatcher::matches PHP 메소드

matches() 공개 메소드

Returns true if $value matches this matcher's criteria.
public matches ( mixed $value ) : boolean
$value mixed The value to check.
리턴 boolean True if the value matches.
    public function matches($value)
    {
        return (bool) $this->matcher->evaluate($value, null, true);
    }