8000 [EventDispatcher] fix empty prio by hjanuschka · Pull Request #35260 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[EventDispatcher] fix empty prio #35260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix doc
  • Loading branch information
hjanuschka committed Jan 8, 2020
commit 73ac2f3612f6cfcfadd5ee8022a14b2e37d2c806
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function getListeners(string $eventName = null);
*
* @param callable $listener The listener
*
* @return int|null The event listener priority
* @return int The event listener priority, defaults to 0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changing this is a BC break

*/
public function getListenerPriority(string $eventName, $listener);

Expand Down
0