Mercurial > hg > isophonics-drupal-site
diff vendor/symfony/event-dispatcher/EventDispatcherInterface.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line diff
--- a/vendor/symfony/event-dispatcher/EventDispatcherInterface.php Mon Apr 23 09:33:26 2018 +0100 +++ b/vendor/symfony/event-dispatcher/EventDispatcherInterface.php Mon Apr 23 09:46:53 2018 +0100 @@ -27,7 +27,7 @@ * the event is the name of the method that is * invoked on listeners. * @param Event $event The event to pass to the event handlers/listeners - * If not supplied, an empty Event instance is created. + * If not supplied, an empty Event instance is created * * @return Event */ @@ -48,8 +48,6 @@ * * The subscriber is asked for all the events he is * interested in and added as a listener for these events. - * - * @param EventSubscriberInterface $subscriber The subscriber */ public function addSubscriber(EventSubscriberInterface $subscriber); @@ -61,11 +59,6 @@ */ public function removeListener($eventName, $listener); - /** - * Removes an event subscriber. - * - * @param EventSubscriberInterface $subscriber The subscriber - */ public function removeSubscriber(EventSubscriberInterface $subscriber); /**