Bachir Soussi Chiadmi ad38015ea9 first commit : grave core and admin plugin | hace 9 años | |
---|---|---|
.. | ||
Debug | hace 9 años | |
DependencyInjection | hace 9 años | |
Tests | hace 9 años | |
CHANGELOG.md | hace 9 años | |
ContainerAwareEventDispatcher.php | hace 9 años | |
Event.php | hace 9 años | |
EventDispatcher.php | hace 9 años | |
EventDispatcherInterface.php | hace 9 años | |
EventSubscriberInterface.php | hace 9 años | |
GenericEvent.php | hace 9 años | |
ImmutableEventDispatcher.php | hace 9 años | |
LICENSE | hace 9 años | |
README.md | hace 9 años | |
composer.json | hace 9 años | |
phpunit.xml.dist | hace 9 años |
The Symfony EventDispatcher component implements the Mediator pattern in a simple and effective way to make your projects truly extensible.
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 install
$ phpunit