Julio Montoya 7464887946 Updating vendors 11 سال پیش
..
Debug 32682a9ca8 Updating vendor 12 سال پیش
Tests 3d9752111b Updating vendor 11 سال پیش
CHANGELOG.md 32682a9ca8 Updating vendor 12 سال پیش
ContainerAwareEventDispatcher.php 8b76813307 Adding web profiler provider 12 سال پیش
Event.php 8b76813307 Adding web profiler provider 12 سال پیش
EventDispatcher.php 1ad9119c46 Updating vendors + adding doctrine bridge, and forms 12 سال پیش
EventDispatcherInterface.php 32682a9ca8 Updating vendor 12 سال پیش
EventSubscriberInterface.php 32682a9ca8 Updating vendor 12 سال پیش
GenericEvent.php 8b76813307 Adding web profiler provider 12 سال پیش
ImmutableEventDispatcher.php 32682a9ca8 Updating vendor 12 سال پیش
LICENSE 32682a9ca8 Updating vendor 12 سال پیش
README.md 7464887946 Updating vendors 11 سال پیش
composer.json 224a0e666e Updating vendors 11 سال پیش
phpunit.xml.dist 8b76813307 Adding web profiler provider 12 سال پیش

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