aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller/HoverCardController.php
diff options
context:
space:
mode:
authorFaraz Samapoor <f.samapoor@gmail.com>2023-06-05 18:35:32 +0330
committerFaraz Samapoor <f.samapoor@gmail.com>2023-06-05 18:35:32 +0330
commitfc0e2a938fa8920120cbd611afb2eab7bccab021 (patch)
tree3deb4b59d84f809d0be4f9e3627dcf997612cad5 /core/Controller/HoverCardController.php
parent25cdc35473e583856e0ac9941f78330f2a05d999 (diff)
downloadnextcloud-server-fc0e2a938fa8920120cbd611afb2eab7bccab021.tar.gz
nextcloud-server-fc0e2a938fa8920120cbd611afb2eab7bccab021.zip
Applies agreed-upon indentation convention to the changed controllers.
Based on https://github.com/nextcloud/server/pull/38636#discussion_r1218167753 Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
Diffstat (limited to 'core/Controller/HoverCardController.php')
-rw-r--r--core/Controller/HoverCardController.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/Controller/HoverCardController.php b/core/Controller/HoverCardController.php
index 154dc01ad97..cfe95be0431 100644
--- a/core/Controller/HoverCardController.php
+++ b/core/Controller/HoverCardController.php
@@ -33,9 +33,11 @@ use OCP\IUserSession;
use OCP\Share\IShare;
class HoverCardController extends \OCP\AppFramework\OCSController {
- public function __construct(IRequest $request,
- private IUserSession $userSession,
- private Manager $manager) {
+ public function __construct(
+ IRequest $request,
+ private IUserSession $userSession,
+ private Manager $manager,
+ ) {
parent::__construct('core', $request);
}