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\Config\Entity\ConfigEntityInterface; |
8 | use Drupal\Core\Entity\EntityDescriptionInterface; |
9 | |
10 | /** |
11 | * Interface for CRM contact type entities. |
12 | */ |
13 | interface 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 | } |