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