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

Breadcrumb

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

function Enum::__construct

Same name in this branch
  1. 11.1.x vendor/google/protobuf/src/Google/Protobuf/Enum.php \Google\Protobuf\Enum::__construct()

@phpstan-param array{literal?: mixed[], value: list<scalar>} $values

Throws

InvalidArgumentException

File

vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Enum.php, line 41

Class

Enum
Annotation that can be used to signal to the parser to check the available values during the parsing process.

Namespace

Doctrine\Common\Annotations\Annotation

Code

public function __construct(array $values) {
    if (!isset($values['literal'])) {
        $values['literal'] = [];
    }
    foreach ($values['value'] as $var) {
        if (!is_scalar($var)) {
            throw new InvalidArgumentException(sprintf('@Enum supports only scalar values "%s" given.', is_object($var) ? get_class($var) : gettype($var)));
        }
    }
    foreach ($values['literal'] as $key => $var) {
        if (!in_array($key, $values['value'])) {
            throw new InvalidArgumentException(sprintf('Undefined enumerator value "%s" for literal "%s".', $key, $var));
        }
    }
    $this->value = $values['value'];
    $this->literal = $values['literal'];
}

API Navigation

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