You are here

public function DomainStorageDecorator::loadSchema in Devel 8.3

Same name and namespace in other branches
  1. 8.2 webprofiler/src/Entity/Decorators/Config/DomainStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\DomainStorageDecorator::loadSchema()
  2. 4.x webprofiler/src/Entity/Decorators/Config/DomainStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\DomainStorageDecorator::loadSchema()

Gets the entity field schema for domain records.

Return value

array An array representing the field schema of the object.

Overrides DomainStorageInterface::loadSchema

File

webprofiler/src/Entity/Decorators/Config/DomainStorageDecorator.php, line 58

Class

DomainStorageDecorator
Class DomainStorageDecorator.

Namespace

Drupal\webprofiler\Entity\Decorators\Config

Code

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