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

Breadcrumb

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

Constraint::$transOpStr

Operator to integer translation table.

@phpstan-var array<self::STR_OP_*, self::OP_*>

Type: array

File

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

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,
);

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal