interface ConstraintInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/composer/semver/src/Constraint/ConstraintInterface.php \Composer\Semver\Constraint\ConstraintInterface
Hierarchy
- interface \Composer\Semver\Constraint\ConstraintInterface
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\ConstraintView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConstraintInterface:: |
public | function | 3 | |
ConstraintInterface:: |
public | function | 3 | |
ConstraintInterface:: |
public | function | 3 | |
ConstraintInterface:: |
public | function | 3 |