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
1 2 3 4 5 | 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" ); } } |
Please login to continue.