{% extends "base/class.php.twig" %} {% block file_path %} Drupal\{{module}}\{{ entity_class }}Interface. {% endblock %} {% block namespace_class %} namespace Drupal\{{module}}; {% endblock %} {% block use_class %} use Drupal\Core\Entity\ContentEntityInterface; use Drupal\Core\Entity\EntityTypeInterface; use Drupal\user\EntityOwnerInterface; {% endblock %} {% block class_declaration %} /** * Provides an interface defining a {{ entity_class }} entity. * * @ingroup {{module}} */ interface {{ entity_class }}Interface extends ContentEntityInterface, EntityOwnerInterface {% endblock %} {% block class_methods %} // Add get/set methods for your configuration properties here. {% endblock %}