Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ExactVersionConstraint.php

function ExactVersionConstraint::complies

Overrides VersionConstraint::complies

File

vendor/phar-io/version/src/constraints/ExactVersionConstraint.php, line 13

Class

ExactVersionConstraint

Namespace

PharIo\Version

Code

public function complies(Version $version) : bool {
    $other = $version->getVersionString();
    if ($version->hasBuildMetaData()) {
        $other .= '+' . $version->getBuildMetaData()
            ->asString();
    }
    return $this->asString() === $other;
}
RSS feed
Powered by Drupal