Repository URL to install this package:
|
Version:
3.0.0 ▾
|
<?php
namespace Drupal\trio_touchpoint\Event;
/**
* Enumeration of entity event types.
*/
class EntityEventType {
const CREATE = 'event.create';
const UPDATE = 'event.update';
const DELETE = 'event.delete';
}