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

Breadcrumb

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

function Cardinality::name

File

vendor/google/protobuf/src/Google/Protobuf/Field/Cardinality.php, line 48

Class

Cardinality
Whether a field is optional, required, or repeated.

Namespace

Google\Protobuf\Field

Code

public static function name($value) {
    if (!isset(self::$valueToName[$value])) {
        throw new UnexpectedValueException(sprintf('Enum %s has no name defined for value %s', __CLASS__, $value));
    }
    return self::$valueToName[$value];
}
RSS feed
Powered by Drupal