Daniel ab1334c0cf the whole shebang | пре 10 година | |
---|---|---|
.. | ||
Debug | пре 10 година | |
Tests | пре 10 година | |
.gitignore | пре 10 година | |
CHANGELOG.md | пре 10 година | |
ContainerAwareEventDispatcher.php | пре 10 година | |
Event.php | пре 10 година | |
EventDispatcher.php | пре 10 година | |
EventDispatcherInterface.php | пре 10 година | |
EventSubscriberInterface.php | пре 10 година | |
GenericEvent.php | пре 10 година | |
ImmutableEventDispatcher.php | пре 10 година | |
LICENSE | пре 10 година | |
README.md | пре 10 година | |
composer.json | пре 10 година | |
phpunit.xml.dist | пре 10 година |
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');
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/EventDispatcher/
$ composer.phar install --dev
$ phpunit