Skip to content

Commit 432a5fb

Browse files
authored
Declare returned type.
Fixes Method getSubscribedEvents() return type has no value type specified in iterable type array. 💡 See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type
1 parent f5741bb commit 432a5fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EventSubscriberInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ interface EventSubscriberInterface
4343
* The code must not depend on runtime state as it will only be called at compile time.
4444
* All logic depending on runtime state must be put into the individual methods handling the events.
4545
*
46-
* @return array The event names to listen to
46+
* @return array<string, mixed> The event names to listen to
4747
*/
4848
public static function getSubscribedEvents();
4949
}

0 commit comments

Comments
 (0)