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\Config\Entity\ConfigEntityInterface;
8use Drupal\Core\Entity\EntityDescriptionInterface;
9
10/**
11 * Interface for CRM contact type entities.
12 */
13interface CrmRelationshipTypeInterface extends ConfigEntityInterface, EntityDescriptionInterface {
14
15  /**
16   * Gets the description.
17   *
18   * @return string
19   *   The description of this relationship type.
20   */
21  public function getDescription();
22
23}