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

Breadcrumb

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

function Descriptor::getFieldByNumber

File

vendor/google/protobuf/src/Google/Protobuf/Internal/Descriptor.php, line 87

Class

Descriptor

Namespace

Google\Protobuf\Internal

Code

public function getFieldByNumber($number) {
    if (!isset($this->field[$number])) {
        return NULL;
    }
    else {
        return $this->field[$number];
    }
}
RSS feed
Powered by Drupal