HeartbeatTypeInterface.php 302 B

12345678910111213
  1. <?php
  2. namespace Drupal\heartbeat8\Entity;
  3. use Drupal\Core\Config\Entity\ConfigEntityInterface;
  4. /**
  5. * Provides an interface for defining Heartbeat type entities.
  6. */
  7. interface HeartbeatTypeInterface extends ConfigEntityInterface {
  8. // Add get/set methods for your configuration properties here.
  9. }