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

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