Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CompilingMatcher.php

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\Semver

Code

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,
);
RSS feed
Powered by Drupal