- <?php
- namespace Drupal\heartbeat8\Entity;
- use Drupal\Core\Config\Entity\ConfigEntityInterface;
- /**
- * Provides an interface for defining Heartbeat type entities.
- */
- interface HeartbeatTypeInterface extends ConfigEntityInterface {
- // Add get/set methods for your configuration properties here.
- }
|