summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-06-21 16:03:45 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-06-21 16:17:52 +0200
commit1bd5222224bac9b8f1037c992367c9af85a9ec5a (patch)
tree2a36b991633734a0738a415c266bcdfeb290c58a /tests
parentdbc2c2325ea194b4588515e5fad988b7ab9bcf3f (diff)
downloadnextcloud-server-1bd5222224bac9b8f1037c992367c9af85a9ec5a.tar.gz
nextcloud-server-1bd5222224bac9b8f1037c992367c9af85a9ec5a.zip
Fix PHP 8.2 warnings about undeclared properties
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/AppFramework/Http/DispatcherTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lib/AppFramework/Http/DispatcherTest.php b/tests/lib/AppFramework/Http/DispatcherTest.php
index e1d78082a2d..8f591f26e58 100644
--- a/tests/lib/AppFramework/Http/DispatcherTest.php
+++ b/tests/lib/AppFramework/Http/DispatcherTest.php
@@ -89,6 +89,8 @@ class DispatcherTest extends \Test\TestCase {
/** @var Dispatcher */
private $dispatcher;
private $controllerMethod;
+ /** @var Controller|MockObject */
+ private $controller;
private $response;
/** @var IRequest|MockObject */
private $request;