ConfigEntityType::checkStorageClass

protected ConfigEntityType::checkStorageClass($class)

Throws

\Drupal\Core\Config\Entity\Exception\ConfigEntityStorageClassException Exception thrown when the provided class is not an instance of \Drupal\Core\Config\Entity\ConfigEntityStorage.

Overrides EntityType::checkStorageClass

See also

\Drupal\Core\Config\Entity\ConfigEntityStorage

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 136

Class

ConfigEntityType
Provides an implementation of a configuration entity type and its metadata.

Namespace

Drupal\Core\Config\Entity

Code

protected function checkStorageClass($class) {
  if (!is_a($class, 'Drupal\Core\Config\Entity\ConfigEntityStorage', TRUE)) {
    throw new ConfigEntityStorageClassException("$class is not \\Drupal\\Core\\Config\\Entity\\ConfigEntityStorage or it does not extend it");
  }
}
doc_Drupal
2016-10-29 08:53:05
Comments
Leave a Comment

Please login to continue.