From 31372128fc088b075824c1f24b5096a8906fa35e Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 9 Sep 2026 21:17:59 -0400 Subject: [PATCH] refactor(core): remove unused Symfony dispatcher accessor Probably could have been removed with #39605 Signed-off-by: Josh --- lib/private/EventDispatcher/EventDispatcher.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/private/EventDispatcher/EventDispatcher.php b/lib/private/EventDispatcher/EventDispatcher.php index 9b44ac89f9873..2d35874c5b11f 100644 --- a/lib/private/EventDispatcher/EventDispatcher.php +++ b/lib/private/EventDispatcher/EventDispatcher.php @@ -86,12 +86,4 @@ public function dispatch(string $eventName, public function dispatchTyped(Event $event): void { $this->dispatch(get_class($event), $event); } - - /** - * @return SymfonyDispatcher - * @deprecated 20.0.0 - */ - public function getSymfonyDispatcher(): SymfonyDispatcher { - return $this->dispatcher; - } }