Skip to content
Snippets Groups Projects
Commit 0e5f711e authored by Tim Plunkett's avatar Tim Plunkett
Browse files

Update references to EntityInterface since it moved.

parent 9f3b6858
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
namespace Drupal\views; namespace Drupal\views;
use Drupal\views_ui_listing\EntityListControllerBase; use Drupal\views_ui_listing\EntityListControllerBase;
use Drupal\entity\EntityInterface; use Drupal\Core\Entity\EntityInterface;
/** /**
* Provides a listing of Views. * Provides a listing of Views.
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
class ViewStorage extends ConfigEntityBase implements ViewStorageInterface { class ViewStorage extends ConfigEntityBase implements ViewStorageInterface {
/** /**
* Overrides Drupal\entity\EntityInterface::id(). * Overrides Drupal\Core\Entity\EntityInterface::id().
*/ */
public function id() { public function id() {
return $this->name; return $this->name;
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
namespace Drupal\views; namespace Drupal\views;
use Drupal\config\ConfigStorageController; use Drupal\config\ConfigStorageController;
use Drupal\entity\EntityInterface; use Drupal\Core\Entity\EntityInterface;
use Drupal\Component\Uuid\Uuid; use Drupal\Component\Uuid\Uuid;
/** /**
...@@ -148,7 +148,7 @@ public function create(array $values) { ...@@ -148,7 +148,7 @@ public function create(array $values) {
/** /**
* Attaches an array of ViewDisplay objects to the view display property. * Attaches an array of ViewDisplay objects to the view display property.
* *
* @param Drupal\entity\EntityInterface $entity * @param Drupal\Core\Entity\EntityInterface $entity
*/ */
protected function attachDisplays(EntityInterface $entity) { protected function attachDisplays(EntityInterface $entity) {
if (isset($entity->display) && is_array($entity->display)) { if (isset($entity->display) && is_array($entity->display)) {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
namespace Drupal\views_ui_listing; namespace Drupal\views_ui_listing;
use Drupal\entity\EntityInterface; use Drupal\Core\Entity\EntityInterface;
use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\JsonResponse;
/** /**
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
namespace Drupal\views_ui_listing; namespace Drupal\views_ui_listing;
use Drupal\entity\EntityInterface; use Drupal\Core\Entity\EntityInterface;
/** /**
* Defines an interface for Configuration entity listing plugins. * Defines an interface for Configuration entity listing plugins.
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
namespace Drupal\views_ui_listing_test; namespace Drupal\views_ui_listing_test;
use Drupal\views_ui_listing\EntityListControllerBase; use Drupal\views_ui_listing\EntityListControllerBase;
use Drupal\entity\EntityInterface; use Drupal\Core\Entity\EntityInterface;
/** /**
* Views config entity listing controller. * Views config entity listing controller.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment