aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/AppFramework/Bootstrap/RegistrationContext.php
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2024-05-06 16:36:35 +0200
committerMarcel Klehr <mklehr@gmx.net>2024-05-14 11:38:41 +0200
commitec27c538b531108ab2cf26fe3264d001f9230aa2 (patch)
tree6618f6771a34642eece57f89b0f2a224880108ea /lib/private/AppFramework/Bootstrap/RegistrationContext.php
parentef61c50f4bcd5ea5911370c682aff19618a4d355 (diff)
downloadnextcloud-server-ec27c538b531108ab2cf26fe3264d001f9230aa2.tar.gz
nextcloud-server-ec27c538b531108ab2cf26fe3264d001f9230aa2.zip
fix: address review comments
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'lib/private/AppFramework/Bootstrap/RegistrationContext.php')
-rw-r--r--lib/private/AppFramework/Bootstrap/RegistrationContext.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/AppFramework/Bootstrap/RegistrationContext.php b/lib/private/AppFramework/Bootstrap/RegistrationContext.php
index 31f3dd7e4d2..9750933854c 100644
--- a/lib/private/AppFramework/Bootstrap/RegistrationContext.php
+++ b/lib/private/AppFramework/Bootstrap/RegistrationContext.php
@@ -164,10 +164,10 @@ class RegistrationContext {
private array $teamResourceProviders = [];
/** @var ServiceRegistration<\OCP\TaskProcessing\IProvider>[] */
- private $taskProcessingProviders = [];
+ private array $taskProcessingProviders = [];
/** @var ServiceRegistration<\OCP\TaskProcessing\ITaskType>[] */
- private $taskProcessingTaskTypes = [];
+ private array $taskProcessingTaskTypes = [];
public function __construct(LoggerInterface $logger) {
$this->logger = $logger;