private static property Constraint::$transOpInt in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/composer/semver/src/Constraint/Constraint.php \Composer\Semver\Constraint\Constraint::transOpInt
Integer to operator translation table.
Type: array
File
- vendor/
composer/ semver/ src/ Constraint/ Constraint.php, line 48
Class
- Constraint
- Defines a constraint.
Namespace
Composer\Semver\ConstraintCode
private static $transOpInt = array(
self::OP_EQ => '==',
self::OP_LT => '<',
self::OP_LE => '<=',
self::OP_GT => '>',
self::OP_GE => '>=',
self::OP_NE => '!=',
);