The League of Extraordinary Packages

Our Packages:

Presented by The League of Extraordinary Packages

Versions:

Getting Started

Usage

Extra Utilities

Dispatching Events

The event dispatcher follows the PSR-14 guidelines for implementation. Events can be dispatched from an event dispatcher instance. They MUST be objects.

use League\Event\EventDispatcher;

$dispatcher = new EventDispatcher();

$dispatcher->dispatch(new AccountWasDisabled());

Dispatching events with dynamic event names

View the documentation on dispatching events with dynamic event names.