examples-3.x-dev/modules/content_entity_example/src/ContactInterface.php
modules/content_entity_example/src/ContactInterface.php
<?php
namespace Drupal\content_entity_example;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
use Drupal\Core\Entity\EntityChangedInterface;
/**
* Provides an interface defining a Contact entity.
*
* We have this interface so we can join the other interfaces it extends.
*
* @ingroup content_entity_example
*/
interface ContactInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
