public function EmptyConstraint::__toString in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/composer/semver/src/Constraint/EmptyConstraint.php \Composer\Semver\Constraint\EmptyConstraint::__toString()
Return value
string
Overrides ConstraintInterface::__toString
1 call to EmptyConstraint::__toString()
- EmptyConstraint::getPrettyString in vendor/
composer/ semver/ src/ Constraint/ EmptyConstraint.php
File
- vendor/
composer/ semver/ src/ Constraint/ EmptyConstraint.php, line 55
Class
- EmptyConstraint
- Defines the absence of a constraint.
Namespace
Composer\Semver\ConstraintCode
public function __toString() {
return '[]';
}