Bez popisu

sunhao fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
..
Debug fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
DependencyInjection fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
Tests fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
.gitignore fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
CHANGELOG.md fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
ContainerAwareEventDispatcher.php fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
Event.php fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
EventDispatcher.php fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
EventDispatcherInterface.php fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
EventSubscriberInterface.php fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
GenericEvent.php fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
ImmutableEventDispatcher.php fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
LICENSE fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
README.md fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
composer.json fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky
phpunit.xml.dist fe08a6fbcc 初始 %!s(int64=5) %!d(string=před) roky

README.md

EventDispatcher Component

The Symfony 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