diff --git a/core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php b/core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php index 94efc1186b..421d12625f 100644 --- a/core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php +++ b/core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php @@ -146,4 +146,11 @@ public function hasData() { return FALSE; } + /** + * {@inheritdoc} + */ + public function revisionIds(EntityInterface $entity, $order = 'ASC') { + return NULL; + } + }