public function EmptyConstraint::matches in Automatic Updates 7
Parameters
ConstraintInterface $provider:
Return value
bool
Overrides ConstraintInterface::matches
File
- vendor/
composer/ semver/ src/ Constraint/ EmptyConstraint.php, line 27
Class
- EmptyConstraint
- Defines the absence of a constraint.
Namespace
Composer\Semver\ConstraintCode
public function matches(ConstraintInterface $provider) {
return true;
}