Daniel ab1334c0cf the whole shebang vor 10 Jahren
..
Debug ab1334c0cf the whole shebang vor 10 Jahren
Tests ab1334c0cf the whole shebang vor 10 Jahren
.gitignore ab1334c0cf the whole shebang vor 10 Jahren
CHANGELOG.md ab1334c0cf the whole shebang vor 10 Jahren
ContainerAwareEventDispatcher.php ab1334c0cf the whole shebang vor 10 Jahren
Event.php ab1334c0cf the whole shebang vor 10 Jahren
EventDispatcher.php ab1334c0cf the whole shebang vor 10 Jahren
EventDispatcherInterface.php ab1334c0cf the whole shebang vor 10 Jahren
EventSubscriberInterface.php ab1334c0cf the whole shebang vor 10 Jahren
GenericEvent.php ab1334c0cf the whole shebang vor 10 Jahren
ImmutableEventDispatcher.php ab1334c0cf the whole shebang vor 10 Jahren
LICENSE ab1334c0cf the whole shebang vor 10 Jahren
README.md ab1334c0cf the whole shebang vor 10 Jahren
composer.json ab1334c0cf the whole shebang vor 10 Jahren
phpunit.xml.dist ab1334c0cf the whole shebang vor 10 Jahren

README.md

EventDispatcher Component

EventDispatcher implements a lightweight version of the Observer design pattern.

use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\Event;

$dispatcher = new EventDispatcher();

$dispatcher->addListener('event_name', function (Event $event) {
    // ...
});

$dispatcher->dispatch('event_name');

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/EventDispatcher/
$ composer.phar install --dev
$ phpunit