CompilingMatcher::$transOpInt
@phpstan-var array<Constraint::OP_*, Constraint::STR_OP_*>
Type: transOpInt
File
-
vendor/
composer/ semver/ src/ CompilingMatcher.php, line 39
Class
- CompilingMatcher
- Helper class to evaluate constraint by compiling and reusing the code to evaluate
Namespace
Composer\SemverCode
private static $transOpInt = array(
Constraint::OP_EQ => Constraint::STR_OP_EQ,
Constraint::OP_LT => Constraint::STR_OP_LT,
Constraint::OP_LE => Constraint::STR_OP_LE,
Constraint::OP_GT => Constraint::STR_OP_GT,
Constraint::OP_GE => Constraint::STR_OP_GE,
Constraint::OP_NE => Constraint::STR_OP_NE,
);