sunhao fe08a6fbcc 初始 | %!s(int64=5) %!d(string=hace) años | |
---|---|---|
.. | ||
Debug | %!s(int64=5) %!d(string=hace) años | |
DependencyInjection | %!s(int64=5) %!d(string=hace) años | |
Tests | %!s(int64=5) %!d(string=hace) años | |
.gitignore | %!s(int64=5) %!d(string=hace) años | |
CHANGELOG.md | %!s(int64=5) %!d(string=hace) años | |
ContainerAwareEventDispatcher.php | %!s(int64=5) %!d(string=hace) años | |
Event.php | %!s(int64=5) %!d(string=hace) años | |
EventDispatcher.php | %!s(int64=5) %!d(string=hace) años | |
EventDispatcherInterface.php | %!s(int64=5) %!d(string=hace) años | |
EventSubscriberInterface.php | %!s(int64=5) %!d(string=hace) años | |
GenericEvent.php | %!s(int64=5) %!d(string=hace) años | |
ImmutableEventDispatcher.php | %!s(int64=5) %!d(string=hace) años | |
LICENSE | %!s(int64=5) %!d(string=hace) años | |
README.md | %!s(int64=5) %!d(string=hace) años | |
composer.json | %!s(int64=5) %!d(string=hace) años | |
phpunit.xml.dist | %!s(int64=5) %!d(string=hace) 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.phar install
$ phpunit