diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-07-26 17:29:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 17:29:22 +0200 |
commit | b76b0bbc1ca8226cd8b4ca9dbab2649c2275e7bd (patch) | |
tree | 00cebb57990f6a379151ba45c9780ac7d83bde15 /apps/files/tests/Controller/ViewControllerTest.php | |
parent | 19e7704c85d0e8aa1c8ea2ca7e8bf47d549ec0e2 (diff) | |
parent | 77bc6c32d8b7cfe65f6a0e4ba303997a22f075d7 (diff) | |
download | nextcloud-server-b76b0bbc1ca8226cd8b4ca9dbab2649c2275e7bd.tar.gz nextcloud-server-b76b0bbc1ca8226cd8b4ca9dbab2649c2275e7bd.zip |
Merge pull request #39485 from nextcloud/bugfix/noid/move-remaining-easy-usages-to-IEventDispatcher
fix(dispatcher): Move remaining simple cases in apps/ folder to IEven…
Diffstat (limited to 'apps/files/tests/Controller/ViewControllerTest.php')
-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; |