PathInsertEvent.php in Hook Event Dispatcher 3.x
Same filename and directory in other branches
Namespace
Drupal\path_event_dispatcher\Event\PathFile
modules/path_event_dispatcher/src/Event/Path/PathInsertEvent.phpView source
<?php
namespace Drupal\path_event_dispatcher\Event\Path;
use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;
/**
* Class PathInsertEvent.
*/
final class PathInsertEvent extends AbstractPathEvent {
/**
* Get the dispatcher type.
*
* @return string
* The dispatcher type.
*/
public function getDispatcherType() : string {
return HookEventDispatcherInterface::PATH_INSERT;
}
}
Classes
Name | Description |
---|---|
PathInsertEvent | Class PathInsertEvent. |