Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
triogroup/trio_touchpoint / src / Event / EntityEventType.php
Size: Mime:
<?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';

}