You are here

public function ConfigEntityStorageDecorator::getEntityTypeId in Devel 8.2

Same name and namespace in other branches
  1. 8.3 webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::getEntityTypeId()
  2. 8 webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::getEntityTypeId()
  3. 4.x webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::getEntityTypeId()

Gets the entity type ID.

Return value

string The entity type ID.

Overrides EntityStorageInterface::getEntityTypeId

File

webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php, line 128

Class

ConfigEntityStorageDecorator
Class ConfigEntityStorageDecorator

Namespace

Drupal\webprofiler\Entity\Decorators\Config

Code

public function getEntityTypeId() {
  return $this
    ->getOriginalObject()
    ->getEntityTypeId();
}