public function ContentEntityNullStorage::deleteRevision in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php \Drupal\Core\Entity\ContentEntityNullStorage::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 ContentEntityStorageBase::deleteRevision
See also
https://www.drupal.org/node/2926958
https://www.drupal.org/node/2927226
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityNullStorage.php, line 51
Class
- ContentEntityNullStorage
- Defines a null entity storage.
Namespace
Drupal\Core\EntityCode
public function deleteRevision($revision_id) {
}