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