You are here

EventInterface.php in Hook Event Dispatcher 8

Same filename and directory in other branches
  1. 8.2 src/Event/EventInterface.php
  2. 3.x src/Event/EventInterface.php

File

src/Event/EventInterface.php
View source
<?php

namespace Drupal\hook_event_dispatcher\Event;


/**
 * Interface EntityEventInterface.
 */
interface EventInterface {

  /**
   * Get the dispatcher type.
   *
   * @return string
   *   The dispatcher type.
   */
  public function getDispatcherType();

}

Interfaces

Namesort descending Description
EventInterface Interface EntityEventInterface.