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
3declare(strict_types=1);
4
5namespace Drupal\crm;
6
7use Drupal\Core\Entity\ContentEntityInterface;
8use Drupal\Core\Entity\EntityChangedInterface;
9use Drupal\user\EntityOwnerInterface;
10
11/**
12 * Provides an interface defining a CRM contact detail entity type.
13 */
14interface CrmContactDetailInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
15
16}