You are here

public function ConfigEntityStorageDecorator::getEntityType 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::getEntityType()
  2. 8 webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::getEntityType()
  3. 4.x webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::getEntityType()

Gets the entity type definition.

Return value

\Drupal\Core\Entity\EntityTypeInterface Entity type definition.

Overrides EntityStorageInterface::getEntityType

File

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

Class

ConfigEntityStorageDecorator
Class ConfigEntityStorageDecorator

Namespace

Drupal\webprofiler\Entity\Decorators\Config

Code

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