Daniel ab1334c0cf the whole shebang | hace 10 años | |
---|---|---|
.. | ||
Debug | hace 10 años | |
Tests | hace 10 años | |
.gitignore | hace 10 años | |
CHANGELOG.md | hace 10 años | |
ContainerAwareEventDispatcher.php | hace 10 años | |
Event.php | hace 10 años | |
EventDispatcher.php | hace 10 años | |
EventDispatcherInterface.php | hace 10 años | |
EventSubscriberInterface.php | hace 10 años | |
GenericEvent.php | hace 10 años | |
ImmutableEventDispatcher.php | hace 10 años | |
LICENSE | hace 10 años | |
README.md | hace 10 años | |
composer.json | hace 10 años | |
phpunit.xml.dist | hace 10 años |
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