Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace Drupal\crm;
4
5use Drupal\Core\Entity\ContentEntityInterface;
6use Drupal\Core\Entity\EntityChangedInterface;
7use Drupal\Core\Entity\EntityPublishedInterface;
8use Drupal\Core\Entity\RevisionLogInterface;
9use Drupal\user\EntityOwnerInterface;
10
11/**
12 * Provides an interface defining a contact entity type.
13 */
14interface CrmContactInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface, RevisionLogInterface, EntityPublishedInterface {
15
16}