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