public function EmptyConstraint::matches in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/composer/semver/src/Constraint/EmptyConstraint.php \Composer\Semver\Constraint\EmptyConstraint::matches()
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;
}