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 | namespace Drupal\crm; |
| 4 | |
| 5 | use Drupal\Core\Entity\ContentEntityInterface; |
| 6 | use Drupal\Core\Entity\EntityChangedInterface; |
| 7 | use Drupal\Core\Entity\EntityPublishedInterface; |
| 8 | use Drupal\Core\Entity\RevisionLogInterface; |
| 9 | |
| 10 | /** |
| 11 | * Provides an interface defining a contact entity type. |
| 12 | */ |
| 13 | interface CrmContactInterface extends ContentEntityInterface, EntityChangedInterface, RevisionLogInterface, EntityPublishedInterface { |
| 14 | |
| 15 | } |