Bachir Soussi Chiadmi ad38015ea9 first commit : grave core and admin plugin | 9 tahun lalu | |
---|---|---|
.. | ||
Debug | 9 tahun lalu | |
DependencyInjection | 9 tahun lalu | |
Tests | 9 tahun lalu | |
CHANGELOG.md | 9 tahun lalu | |
ContainerAwareEventDispatcher.php | 9 tahun lalu | |
Event.php | 9 tahun lalu | |
EventDispatcher.php | 9 tahun lalu | |
EventDispatcherInterface.php | 9 tahun lalu | |
EventSubscriberInterface.php | 9 tahun lalu | |
GenericEvent.php | 9 tahun lalu | |
ImmutableEventDispatcher.php | 9 tahun lalu | |
LICENSE | 9 tahun lalu | |
README.md | 9 tahun lalu | |
composer.json | 9 tahun lalu | |
phpunit.xml.dist | 9 tahun lalu |
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