nextcloud/apps/files_external/3rdparty/aws-sdk-php/Symfony/Component/EventDispatcher
Johan Björk e0056c4a0d Upgrade AWS sdk to 2.7.5 2014-11-13 23:37:34 +01:00
..
Debug Upgrade AWS sdk to 2.7.5 2014-11-13 23:37:34 +01:00
DependencyInjection Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00
Tests Upgrade AWS sdk to 2.7.5 2014-11-13 23:37:34 +01:00
.gitignore Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00
CHANGELOG.md Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00
ContainerAwareEventDispatcher.php Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00
Event.php Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00
EventDispatcher.php Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00
EventDispatcherInterface.php Upgrade AWS sdk to 2.7.5 2014-11-13 23:37:34 +01:00
EventSubscriberInterface.php
GenericEvent.php Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00
ImmutableEventDispatcher.php
LICENSE Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00
README.md Upgrade AWS sdk to 2.7.5 2014-11-13 23:37:34 +01:00
composer.json Upgrade AWS sdk to 2.7.5 2014-11-13 23:37:34 +01:00
phpunit.xml.dist Update AWS sdk to 2.6.15 2014-09-03 12:09:06 +02:00

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