Daniel ab1334c0cf the whole shebang před 10 roky
..
Debug ab1334c0cf the whole shebang před 10 roky
Tests ab1334c0cf the whole shebang před 10 roky
.gitignore ab1334c0cf the whole shebang před 10 roky
CHANGELOG.md ab1334c0cf the whole shebang před 10 roky
ContainerAwareEventDispatcher.php ab1334c0cf the whole shebang před 10 roky
Event.php ab1334c0cf the whole shebang před 10 roky
EventDispatcher.php ab1334c0cf the whole shebang před 10 roky
EventDispatcherInterface.php ab1334c0cf the whole shebang před 10 roky
EventSubscriberInterface.php ab1334c0cf the whole shebang před 10 roky
GenericEvent.php ab1334c0cf the whole shebang před 10 roky
ImmutableEventDispatcher.php ab1334c0cf the whole shebang před 10 roky
LICENSE ab1334c0cf the whole shebang před 10 roky
README.md ab1334c0cf the whole shebang před 10 roky
composer.json ab1334c0cf the whole shebang před 10 roky
phpunit.xml.dist ab1334c0cf the whole shebang před 10 roky

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