Issue #2420037 by daffie: Remove EntityViewsDataInterface from some subclasses of EntityViewsData which implements EntityViewsDataInterface

8.0.x
Alex Pott 2015-02-16 23:46:58 +00:00
parent a02e7788e5
commit 99466a04e4
3 changed files with 3 additions and 6 deletions

View File

@ -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}

View File

@ -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}

View File

@ -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}