You are here

public function EntityListBuilder::getStorage in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/EntityListBuilder.php \Drupal\Core\Entity\EntityListBuilder::getStorage()

Gets the entity storage.

Return value

\Drupal\Core\Entity\EntityStorageInterface The storage used by this list builder.

Overrides EntityListBuilderInterface::getStorage

File

core/lib/Drupal/Core/Entity/EntityListBuilder.php, line 78

Class

EntityListBuilder
Defines a generic implementation to build a listing of entities.

Namespace

Drupal\Core\Entity

Code

public function getStorage() {
  return $this->storage;
}