EntityCreateEvent.php in Hook Event Dispatcher 3.x
Same filename and directory in other branches
File
modules/core_event_dispatcher/src/Event/Entity/EntityCreateEvent.phpView source
<?php
namespace Drupal\core_event_dispatcher\Event\Entity;
use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;
/**
* Class EntityCreateEvent.
*/
class EntityCreateEvent extends AbstractEntityEvent {
/**
* {@inheritdoc}
*/
public function getDispatcherType() : string {
return HookEventDispatcherInterface::ENTITY_CREATE;
}
}
Classes
Name | Description |
---|---|
EntityCreateEvent | Class EntityCreateEvent. |