public function FieldableEdgeEntityStorageBase::requiresEntityStorageSchemaChanges in Apigee Edge 8
Checks if the changes to the entity type requires storage schema changes.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The updated entity type definition.
\Drupal\Core\Entity\EntityTypeInterface $original: The original entity type definition.
Return value
bool TRUE if storage schema changes are required, FALSE otherwise.
Overrides EntityStorageSchemaInterface::requiresEntityStorageSchemaChanges
File
- src/
Entity/ Storage/ FieldableEdgeEntityStorageBase.php, line 52
Class
- FieldableEdgeEntityStorageBase
- Base class for fieldable Apigee Edge entities.
Namespace
Drupal\apigee_edge\Entity\StorageCode
public function requiresEntityStorageSchemaChanges(EntityTypeInterface $entity_type, EntityTypeInterface $original) {
return FALSE;
}