Eloquent\Phony\Matcher\AnyMatcher::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 true;
    }