You are here

protected function ContentEntityNullStorage::doLoadMultipleRevisionsFieldItems in Drupal 9

Same name and namespace in other branches
  1. 10 core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php \Drupal\Core\Entity\ContentEntityNullStorage::doLoadMultipleRevisionsFieldItems()

Actually loads revision field item values from the storage.

Parameters

array $revision_ids: An array of revision identifiers.

Return value

\Drupal\Core\Entity\EntityInterface[] The specified entity revisions or an empty array if none are found.

Overrides ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems

File

core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php, line 89

Class

ContentEntityNullStorage
Defines a null entity storage.

Namespace

Drupal\Core\Entity

Code

protected function doLoadMultipleRevisionsFieldItems($revision_ids) {
  return [];
}