From d16e8660746b834207982b197231c9c6215fbcfe Mon Sep 17 00:00:00 2001 From: Robin Chalas <chalasr@users.noreply.github.com> Date: Sun, 4 Jun 2023 06:43:52 +0200 Subject: [PATCH] Fix missing linebreak in ListenerProviderInterface's docblock --- src/ListenerProviderInterface.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ListenerProviderInterface.php b/src/ListenerProviderInterface.php index 3775ebd..2b60f65 100644 --- a/src/ListenerProviderInterface.php +++ b/src/ListenerProviderInterface.php @@ -11,6 +11,7 @@ interface ListenerProviderInterface /** * @param object $event * An event for which to return the relevant listeners. + * * @return iterable<callable> * An iterable (array, iterator, or generator) of callables. Each * callable MUST be type-compatible with $event.