You are here

PathInsertEvent.php in Hook Event Dispatcher 8

File

src/Event/Path/PathInsertEvent.php
View source
<?php

namespace Drupal\hook_event_dispatcher\Event\Path;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

/**
 * Class PathInsertEvent.
 */
final class PathInsertEvent extends BasePathEvent {

  /**
   * Get the dispatcher type.
   *
   * @return string
   *   The dispatcher type.
   */
  public function getDispatcherType() {
    return HookEventDispatcherInterface::PATH_INSERT;
  }

}

Classes

Namesort descending Description
PathInsertEvent Class PathInsertEvent.