You are here

PathUpdateEvent.php in Hook Event Dispatcher 3.x

Same filename and directory in other branches
  1. 8.2 modules/path_event_dispatcher/src/Event/Path/PathUpdateEvent.php

File

modules/path_event_dispatcher/src/Event/Path/PathUpdateEvent.php
View source
<?php

namespace Drupal\path_event_dispatcher\Event\Path;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

/**
 * Class UpdatePathEvent.
 */
final class PathUpdateEvent extends AbstractPathEvent {

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

}

Classes

Namesort descending Description
PathUpdateEvent Class UpdatePathEvent.