You are here

interface ConstraintInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/composer/semver/src/Constraint/ConstraintInterface.php \Composer\Semver\Constraint\ConstraintInterface

Hierarchy

Expanded class hierarchy of ConstraintInterface

All classes that implement ConstraintInterface

1 file declares its use of ConstraintInterface
VersionParser.php in vendor/composer/semver/src/VersionParser.php

File

vendor/composer/semver/src/Constraint/ConstraintInterface.php, line 14

Namespace

Composer\Semver\Constraint
View source
interface ConstraintInterface {

  /**
   * @param ConstraintInterface $provider
   *
   * @return bool
   */
  public function matches(ConstraintInterface $provider);

  /**
   * @param string $prettyString
   */
  public function setPrettyString($prettyString);

  /**
   * @return string
   */
  public function getPrettyString();

  /**
   * @return string
   */
  public function __toString();

}

Members