Issue #2420037 by daffie: Remove EntityViewsDataInterface from some subclasses of EntityViewsData which implements EntityViewsDataInterface
parent
a02e7788e5
commit
99466a04e4
|
@ -8,12 +8,11 @@
|
||||||
namespace Drupal\aggregator;
|
namespace Drupal\aggregator;
|
||||||
|
|
||||||
use Drupal\views\EntityViewsData;
|
use Drupal\views\EntityViewsData;
|
||||||
use Drupal\views\EntityViewsDataInterface;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides the views data for the aggregator feed entity type.
|
* Provides the views data for the aggregator feed entity type.
|
||||||
*/
|
*/
|
||||||
class AggregatorFeedViewsData extends EntityViewsData implements EntityViewsDataInterface {
|
class AggregatorFeedViewsData extends EntityViewsData {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
|
|
|
@ -8,12 +8,11 @@
|
||||||
namespace Drupal\aggregator;
|
namespace Drupal\aggregator;
|
||||||
|
|
||||||
use Drupal\views\EntityViewsData;
|
use Drupal\views\EntityViewsData;
|
||||||
use Drupal\views\EntityViewsDataInterface;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides the views data for the aggregator item entity type.
|
* Provides the views data for the aggregator item entity type.
|
||||||
*/
|
*/
|
||||||
class AggregatorItemViewsData extends EntityViewsData implements EntityViewsDataInterface {
|
class AggregatorItemViewsData extends EntityViewsData {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
|
|
|
@ -8,12 +8,11 @@
|
||||||
namespace Drupal\node;
|
namespace Drupal\node;
|
||||||
|
|
||||||
use Drupal\views\EntityViewsData;
|
use Drupal\views\EntityViewsData;
|
||||||
use Drupal\views\EntityViewsDataInterface;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides the views data for the node entity type.
|
* Provides the views data for the node entity type.
|
||||||
*/
|
*/
|
||||||
class NodeViewsData extends EntityViewsData implements EntityViewsDataInterface {
|
class NodeViewsData extends EntityViewsData {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
|
|
Loading…
Reference in New Issue