diff options
author | Joas Schilling <coding@schilljs.com> | 2023-07-19 21:56:34 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-07-25 11:19:26 +0200 |
commit | 77bc6c32d8b7cfe65f6a0e4ba303997a22f075d7 (patch) | |
tree | 30c9d215b79d0c21ba7ecac0b5fb94865fec2863 /apps/files/tests | |
parent | 43ab741f9cc252ac48612f586b0d545c0c253e5c (diff) | |
download | nextcloud-server-77bc6c32d8b7cfe65f6a0e4ba303997a22f075d7.tar.gz nextcloud-server-77bc6c32d8b7cfe65f6a0e4ba303997a22f075d7.zip |
fix(dispatcher): Move remaining simple cases in apps/ folder to IEventDispatcher
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files/tests')
-rw-r--r-- | apps/files/tests/Controller/ViewControllerTest.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php index 05f35f32f0a..2fa98be9fcd 100644 --- a/apps/files/tests/Controller/ViewControllerTest.php +++ b/apps/files/tests/Controller/ViewControllerTest.php @@ -52,7 +52,6 @@ use OCP\IUser; use OCP\IUserSession; use OCP\Share\IManager; use OCP\Template; -use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Test\TestCase; /** @@ -69,7 +68,7 @@ class ViewControllerTest extends TestCase { private $l10n; /** @var IConfig|\PHPUnit\Framework\MockObject\MockObject */ private $config; - /** @var EventDispatcherInterface */ + /** @var IEventDispatcher */ private $eventDispatcher; /** @var ViewController|\PHPUnit\Framework\MockObject\MockObject */ private $viewController; |