diff --git a/core/lib/Drupal/Core/Entity/EntityListController.php b/core/lib/Drupal/Core/Entity/EntityListController.php index e05597a..4dae842 100644 --- a/core/lib/Drupal/Core/Entity/EntityListController.php +++ b/core/lib/Drupal/Core/Entity/EntityListController.php @@ -50,21 +50,21 @@ public function __construct($entity_type, EntityStorageControllerInterface $stor } /** - * Implements \Drupal\Core\Entity\EntityListControllerInterface::getStorageController(). + * Implements EntityListControllerInterface::getStorageController(). */ public function getStorageController() { return $this->storage; } /** - * Implements \Drupal\Core\Entity\EntityListControllerInterface::load(). + * Implements EntityListControllerInterface::load(). */ public function load() { return $this->storage->load(); } /** - * Implements \Drupal\Core\Entity\EntityListControllerInterface::getOperations(). + * Implements EntityListControllerInterface::getOperations(). */ public function getOperations(EntityInterface $entity) { $uri = $entity->uri(); @@ -139,7 +139,7 @@ public function buildOperations(EntityInterface $entity) { } /** - * Implements \Drupal\Core\Entity\EntityListControllerInterface::render(). + * Implements EntityListControllerInterface::render(). * * Builds the entity list as renderable array for theme_table(). *