You are here

public function KeyValueEntityStorage::deleteRevision in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/KeyValueStore/KeyValueEntityStorage.php \Drupal\Core\Entity\KeyValueStore\KeyValueEntityStorage::deleteRevision()

Delete a specific entity revision.

A revision can only be deleted if it's not the currently active one.

@todo Deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\Entity\RevisionableStorageInterface instead.

Parameters

int $revision_id: The revision id.

Overrides EntityStorageInterface::deleteRevision

See also

https://www.drupal.org/node/2926958

https://www.drupal.org/node/2927226

File

core/lib/Drupal/Core/Entity/KeyValueStore/KeyValueEntityStorage.php, line 140

Class

KeyValueEntityStorage
Provides a key value backend for entities.

Namespace

Drupal\Core\Entity\KeyValueStore

Code

public function deleteRevision($revision_id) {
  return NULL;
}