You are here

public function EmptyConstraint::matches in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\Constraint

Code

public function matches(ConstraintInterface $provider) {
  return true;
}