diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-05 16:45:21 +0330 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-05 16:45:21 +0330 |
commit | 05784c32446b724a8fead992dbe4ee584defcabd (patch) | |
tree | be643d929041ef34ed8ff6466e1c4efcb378aa9a /core/Controller | |
parent | 2713ab023ffb95aad0b844b9ad843e16362e6862 (diff) | |
download | nextcloud-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/Controller')
-rw-r--r-- | core/Controller/CollaborationResourcesController.php | 12 |
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); } |