X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fevent-dispatcher%2FEventDispatcherInterface.php;fp=vendor%2Fsymfony%2Fevent-dispatcher%2FEventDispatcherInterface.php;h=d3d0cb8a452d26b42970284f130c29ef76f9e27c;hp=08ebf3400e98f1a27a05d5c344df2068abc088bc;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/symfony/event-dispatcher/EventDispatcherInterface.php b/vendor/symfony/event-dispatcher/EventDispatcherInterface.php index 08ebf3400..d3d0cb8a4 100644 --- a/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +++ b/vendor/symfony/event-dispatcher/EventDispatcherInterface.php @@ -27,7 +27,7 @@ interface EventDispatcherInterface * 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 @@ interface EventDispatcherInterface * * 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 @@ interface EventDispatcherInterface */ public function removeListener($eventName, $listener); - /** - * Removes an event subscriber. - * - * @param EventSubscriberInterface $subscriber The subscriber - */ public function removeSubscriber(EventSubscriberInterface $subscriber); /**