Skip to content
Snippets Groups Projects
Commit 99466a04 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2420037 by daffie: Remove EntityViewsDataInterface from some subclasses...

Issue #2420037 by daffie: Remove EntityViewsDataInterface from some subclasses of EntityViewsData which implements EntityViewsDataInterface
parent a02e7788
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,12 +8,11 @@
namespace Drupal\aggregator;
use Drupal\views\EntityViewsData;
use Drupal\views\EntityViewsDataInterface;
/**
* Provides the views data for the aggregator feed entity type.
*/
class AggregatorFeedViewsData extends EntityViewsData implements EntityViewsDataInterface {
class AggregatorFeedViewsData extends EntityViewsData {
/**
* {@inheritdoc}
......
......@@ -8,12 +8,11 @@
namespace Drupal\aggregator;
use Drupal\views\EntityViewsData;
use Drupal\views\EntityViewsDataInterface;
/**
* Provides the views data for the aggregator item entity type.
*/
class AggregatorItemViewsData extends EntityViewsData implements EntityViewsDataInterface {
class AggregatorItemViewsData extends EntityViewsData {
/**
* {@inheritdoc}
......
......@@ -8,12 +8,11 @@
namespace Drupal\node;
use Drupal\views\EntityViewsData;
use Drupal\views\EntityViewsDataInterface;
/**
* Provides the views data for the node entity type.
*/
class NodeViewsData extends EntityViewsData implements EntityViewsDataInterface {
class NodeViewsData extends EntityViewsData {
/**
* {@inheritdoc}
......
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