You are here

EntityTranslationDeleteEvent.php in Hook Event Dispatcher 8

File

src/Event/Entity/EntityTranslationDeleteEvent.php
View source
<?php

namespace Drupal\hook_event_dispatcher\Event\Entity;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

/**
 * Class EntityTranslationDeleteEvent.
 */
class EntityTranslationDeleteEvent extends BaseEntityEvent {

  /**
   * {@inheritdoc}
   */
  public function getDispatcherType() {
    return HookEventDispatcherInterface::ENTITY_TRANSLATION_DELETE;
  }

}

Classes

Namesort descending Description
EntityTranslationDeleteEvent Class EntityTranslationDeleteEvent.