You are here

private static property Constraint::$transOpStr in Zircon Profile 8

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

Operator to integer translation table.

Type: array

File

vendor/composer/semver/src/Constraint/Constraint.php, line 32

Class

Constraint
Defines a constraint.

Namespace

Composer\Semver\Constraint

Code

private static $transOpStr = array(
  '=' => self::OP_EQ,
  '==' => self::OP_EQ,
  '<' => self::OP_LT,
  '<=' => self::OP_LE,
  '>' => self::OP_GT,
  '>=' => self::OP_GE,
  '<>' => self::OP_NE,
  '!=' => self::OP_NE,
);