Eloquent\Phony\Integration\ProphecyMatcher::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->scoreArgument($value);
    }
ProphecyMatcher