ViewsConfigEntityTestViewsData.php in Drupal 8
File
core/modules/views/tests/modules/views_config_entity_test/src/ViewsConfigEntityTestViewsData.php
View source
<?php
namespace Drupal\views_config_entity_test;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\views\EntityViewsDataInterface;
class ViewsConfigEntityTestViewsData implements EntityViewsDataInterface {
public function getViewsData() {
return [];
}
public function getViewsTableForEntityType(EntityTypeInterface $entity_type) {
return 'views_config_entity_test';
}
}