aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFaraz Samapoor <f.samapoor@gmail.com>2023-06-05 16:45:21 +0330
committerGitHub <noreply@github.com>2023-06-05 16:45:21 +0330
commit05784c32446b724a8fead992dbe4ee584defcabd (patch)
treebe643d929041ef34ed8ff6466e1c4efcb378aa9a /core
parent2713ab023ffb95aad0b844b9ad843e16362e6862 (diff)
downloadnextcloud-server-05784c32446b724a8fead992dbe4ee584defcabd.tar.gz
nextcloud-server-05784c32446b724a8fead992dbe4ee584defcabd.zip
Update core/Controller/CollaborationResourcesController.php
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
Diffstat (limited to 'core')
-rw-r--r--core/Controller/CollaborationResourcesController.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/core/Controller/CollaborationResourcesController.php b/core/Controller/CollaborationResourcesController.php
index 9c6067e9b50..da90f27c9ef 100644
--- a/core/Controller/CollaborationResourcesController.php
+++ b/core/Controller/CollaborationResourcesController.php
@@ -42,11 +42,13 @@ use OCP\IUserSession;
use Psr\Log\LoggerInterface;
class CollaborationResourcesController extends OCSController {
- public function __construct(string $appName,
- IRequest $request,
- private IManager $manager,
- private IUserSession $userSession,
- private LoggerInterface $logger) {
+ public function __construct(
+ string $appName,
+ IRequest $request,
+ private IManager $manager,
+ private IUserSession $userSession,
+ private LoggerInterface $logger,
+ ) {
parent::__construct($appName, $request);
}