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

Breadcrumb

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

function Syntax::value

File

vendor/google/protobuf/src/Google/Protobuf/Syntax.php, line 44

Class

Syntax
The syntax in which a protocol buffer element is defined.

Namespace

Google\Protobuf

Code

public static function value($name) {
    $const = __CLASS__ . '::' . strtoupper($name);
    if (!defined($const)) {
        throw new UnexpectedValueException(sprintf('Enum %s has no value defined for name %s', __CLASS__, $name));
    }
    return constant($const);
}

API Navigation

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