From 0bb8ba4ea4c8d7871a3259a0d42402909a2a9c2e Mon Sep 17 00:00:00 2001 From: SAMUEL NELA Date: Fri, 31 May 2019 00:41:44 +0200 Subject: [PATCH] [Contracts] Fixed typos --- .../Contracts/EventDispatcher/EventDispatcherInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Contracts/EventDispatcher/EventDispatcherInterface.php b/src/Symfony/Contracts/EventDispatcher/EventDispatcherInterface.php index 9b1a69add2..2d470af920 100644 --- a/src/Symfony/Contracts/EventDispatcher/EventDispatcherInterface.php +++ b/src/Symfony/Contracts/EventDispatcher/EventDispatcherInterface.php @@ -23,7 +23,7 @@ if (interface_exists(PsrEventDispatcherInterface::class)) { * Dispatches an event to all registered listeners. * * For BC with Symfony 4, the $eventName argument is not declared explicitly on the - * signature of the method. Implementations that are not bound by this BC contraint + * signature of the method. Implementations that are not bound by this BC constraint * MUST declare it explicitly, as allowed by PHP. * * @param object $event The event to pass to the event handlers/listeners @@ -44,7 +44,7 @@ if (interface_exists(PsrEventDispatcherInterface::class)) { * Dispatches an event to all registered listeners. * * For BC with Symfony 4, the $eventName argument is not declared explicitly on the - * signature of the method. Implementations that are not bound by this BC contraint + * signature of the method. Implementations that are not bound by this BC constraint * MUST declare it explicitly, as allowed by PHP. * * @param object $event The event to pass to the event handlers/listeners