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

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