alimiracle 24e7577a47 make all vor 9 Jahren
..
Debug 24e7577a47 make all vor 9 Jahren
DependencyInjection 24e7577a47 make all vor 9 Jahren
Tests 24e7577a47 make all vor 9 Jahren
.gitignore 24e7577a47 make all vor 9 Jahren
CHANGELOG.md 24e7577a47 make all vor 9 Jahren
ContainerAwareEventDispatcher.php 24e7577a47 make all vor 9 Jahren
Event.php 24e7577a47 make all vor 9 Jahren
EventDispatcher.php 24e7577a47 make all vor 9 Jahren
EventDispatcherInterface.php 24e7577a47 make all vor 9 Jahren
EventSubscriberInterface.php 24e7577a47 make all vor 9 Jahren
GenericEvent.php 24e7577a47 make all vor 9 Jahren
ImmutableEventDispatcher.php 24e7577a47 make all vor 9 Jahren
LICENSE 24e7577a47 make all vor 9 Jahren
README.md 24e7577a47 make all vor 9 Jahren
composer.json 24e7577a47 make all vor 9 Jahren
phpunit.xml.dist 24e7577a47 make all vor 9 Jahren

README.md

EventDispatcher Component

The Symfony2 EventDispatcher component implements the Mediator pattern in a simple and effective way to make your projects truly extensible.

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
$ phpunit