Julio Montoya 7464887946 Updating vendors | 11 ani în urmă | |
---|---|---|
.. | ||
Debug | 12 ani în urmă | |
Tests | 11 ani în urmă | |
CHANGELOG.md | 12 ani în urmă | |
ContainerAwareEventDispatcher.php | 12 ani în urmă | |
Event.php | 12 ani în urmă | |
EventDispatcher.php | 12 ani în urmă | |
EventDispatcherInterface.php | 12 ani în urmă | |
EventSubscriberInterface.php | 12 ani în urmă | |
GenericEvent.php | 12 ani în urmă | |
ImmutableEventDispatcher.php | 12 ani în urmă | |
LICENSE | 12 ani în urmă | |
README.md | 11 ani în urmă | |
composer.json | 11 ani în urmă | |
phpunit.xml.dist | 12 ani în urmă |
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
$ phpunit