You are here

public function ResourceIdentifier::hasArity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php \Drupal\jsonapi\JsonApiResource\ResourceIdentifier::hasArity()

Whether this ResourceIdentifier has an arity.

Return value

int TRUE if the ResourceIdentifier has an arity, FALSE otherwise.

1 call to ResourceIdentifier::hasArity()
ResourceIdentifier::getArity in core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php
Gets the ResourceIdentifier's arity.

File

core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php, line 129

Class

ResourceIdentifier
Represents a JSON:API resource identifier object.

Namespace

Drupal\jsonapi\JsonApiResource

Code

public function hasArity() {
  return isset($this->meta[static::ARITY_KEY]);
}