From a5853d7ecc08e048144ad1e9f1ff6f1fbf192a92 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 18 Aug 2020 16:25:19 +0200 Subject: [PATCH] Use dispatchTyped instead of dispatch on the new event dispatcher Signed-off-by: Morris Jobke --- apps/files_sharing/list.php | 12 +++++++----- .../lib/Service/BackupCodeStorage.php | 2 +- .../tests/Unit/Service/BackupCodeStorageTest.php | 3 +-- build/psalm-baseline.xml | 7 ++----- 4 files changed, 11 insertions(+), 13 deletions(-) diff --git a/apps/files_sharing/list.php b/apps/files_sharing/list.php index 370ca53c6b..58d2b56b25 100644 --- a/apps/files_sharing/list.php +++ b/apps/files_sharing/list.php @@ -30,7 +30,9 @@ use OCP\EventDispatcher\GenericEvent; OCP\User::checkLoggedIn(); $config = \OC::$server->getConfig(); $userSession = \OC::$server->getUserSession(); -$eventDispatcher = \OC::$server->getEventDispatcher(); +$legacyEventDispatcher = \OC::$server->getEventDispatcher(); +/** @var \OCP\EventDispatcher\IEventDispatcher $eventDispatcher */ +$eventDispatcher = \OC::$server->get(OCP\EventDispatcher\IEventDispatcher::class); $showgridview = $config->getUserValue($userSession->getUser()->getUID(), 'files', 'show_grid', false); $isIE = \OCP\Util::isIE(); @@ -41,13 +43,13 @@ $tmpl = new OCP\Template('files_sharing', 'list', ''); $tmpl->assign('showgridview', $showgridview && !$isIE); // fire script events -$eventDispatcher->dispatch('\OCP\Collaboration\Resources::loadAdditionalScripts', new GenericEvent()); -$eventDispatcher->dispatch(LoadAdditionalScriptsEvent::class, new LoadAdditionalScriptsEvent()); -$eventDispatcher->dispatch(LoadSidebar::class, new LoadSidebar()); +$legacyEventDispatcher->dispatch('\OCP\Collaboration\Resources::loadAdditionalScripts', new GenericEvent()); +$eventDispatcher->dispatchTyped(new LoadAdditionalScriptsEvent()); +$eventDispatcher->dispatchTyped(new LoadSidebar()); // Load Viewer scripts if (class_exists(LoadViewer::class)) { - $eventDispatcher->dispatch(LoadViewer::class, new LoadViewer()); + $eventDispatcher->dispatchTyped(new LoadViewer()); } $tmpl->printPage(); diff --git a/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php b/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php index fb604d80aa..d85e00c0a8 100644 --- a/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php +++ b/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php @@ -81,7 +81,7 @@ class BackupCodeStorage { $result[] = $code; } - $this->eventDispatcher->dispatch(CodesGenerated::class, new CodesGenerated($user)); + $this->eventDispatcher->dispatchTyped(new CodesGenerated($user)); return $result; } diff --git a/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php b/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php index ef17459cb0..7d06995269 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php @@ -82,9 +82,8 @@ class BackupCodeStorageTest extends TestCase { ->method('insert') ->with($this->equalTo($row)); $this->eventDispatcher->expects($this->once()) - ->method('dispatch') + ->method('dispatchTyped') ->with( - $this->equalTo(CodesGenerated::class), $this->equalTo(new CodesGenerated($user)) ); diff --git a/build/psalm-baseline.xml b/build/psalm-baseline.xml index 5a2d3ab43b..9c798a2344 100644 --- a/build/psalm-baseline.xml +++ b/build/psalm-baseline.xml @@ -1947,13 +1947,10 @@ - + '\OCP\Collaboration\Resources::loadAdditionalScripts' - LoadAdditionalScriptsEvent::class - LoadSidebar::class - LoadViewer::class - + dispatch dispatch dispatch