protected EntityType::checkStorageClass($class)
Checks that the provided class is compatible with the current entity type.
Parameters
string $class: The class to check.
File
- core/lib/Drupal/Core/Entity/EntityType.php, line 494
Class
- EntityType
- Provides an implementation of an entity type and its metadata.
Namespace
Drupal\Core\Entity
Code
1 2 3 | protected function checkStorageClass( $class ) { // Nothing to check by default. } |
Please login to continue.