Eloquent\Phony\Phpunit\PhpunitMatcher::matches PHP Method

matches() public method

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