You are here

public function DomainStorageDecorator::loadDefaultId in Devel 8.2

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

Returns the id of the default domain.

Return value

int|bool The id of the default domain or FALSE if none is set.

Overrides DomainStorageInterface::loadDefaultId

File

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

Class

DomainStorageDecorator
Class DomainStorageDecorator

Namespace

Drupal\webprofiler\Entity\Decorators\Config

Code

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