Daniel ab1334c0cf the whole shebang 10 yıl önce
..
Debug ab1334c0cf the whole shebang 10 yıl önce
Tests ab1334c0cf the whole shebang 10 yıl önce
.gitignore ab1334c0cf the whole shebang 10 yıl önce
CHANGELOG.md ab1334c0cf the whole shebang 10 yıl önce
ContainerAwareEventDispatcher.php ab1334c0cf the whole shebang 10 yıl önce
Event.php ab1334c0cf the whole shebang 10 yıl önce
EventDispatcher.php ab1334c0cf the whole shebang 10 yıl önce
EventDispatcherInterface.php ab1334c0cf the whole shebang 10 yıl önce
EventSubscriberInterface.php ab1334c0cf the whole shebang 10 yıl önce
GenericEvent.php ab1334c0cf the whole shebang 10 yıl önce
ImmutableEventDispatcher.php ab1334c0cf the whole shebang 10 yıl önce
LICENSE ab1334c0cf the whole shebang 10 yıl önce
README.md ab1334c0cf the whole shebang 10 yıl önce
composer.json ab1334c0cf the whole shebang 10 yıl önce
phpunit.xml.dist ab1334c0cf the whole shebang 10 yıl önce

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