You are here

public function ResourceType::getBundle in JSON:API 8.2

Same name and namespace in other branches
  1. 8 src/ResourceType/ResourceType.php \Drupal\jsonapi\ResourceType\ResourceType::getBundle()

Gets the bundle.

Return value

string The bundle of the entity. Defaults to the entity type ID if the entity type does not make use of different bundles.

See also

\Drupal\Core\Entity\EntityInterface::bundle

1 call to ResourceType::getBundle()
ResourceType::getPath in src/ResourceType/ResourceType.php
Get the resource path.

File

src/ResourceType/ResourceType.php, line 138

Class

ResourceType
Value object containing all metadata for a JSON:API resource type.

Namespace

Drupal\jsonapi\ResourceType

Code

public function getBundle() {
  return $this->bundle;
}