diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-05 18:42:42 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-16 19:29:40 +0200 |
commit | d64aa85b0464933bd2dc25a56c0569c6dad6af19 (patch) | |
tree | 09e27885b4e046185bdde3d5fcc600bdeb63b547 /core/Controller/ProfileApiController.php | |
parent | 73b7096850a8cd4530c327f32acaacd6c9bcd279 (diff) | |
download | nextcloud-server-d64aa85b0464933bd2dc25a56c0569c6dad6af19.tar.gz nextcloud-server-d64aa85b0464933bd2dc25a56c0569c6dad6af19.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/ProfileApiController.php')
-rw-r--r-- | core/Controller/ProfileApiController.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/core/Controller/ProfileApiController.php b/core/Controller/ProfileApiController.php index 8fde293d5c9..e66d4f21c2b 100644 --- a/core/Controller/ProfileApiController.php +++ b/core/Controller/ProfileApiController.php @@ -38,11 +38,13 @@ use OCP\IUserSession; use OC\Profile\ProfileManager; class ProfileApiController extends OCSController { - public function __construct(IRequest $request, - private ProfileConfigMapper $configMapper, - private ProfileManager $profileManager, - private IUserManager $userManager, - private IUserSession $userSession) { + public function __construct( + IRequest $request, + private ProfileConfigMapper $configMapper, + private ProfileManager $profileManager, + private IUserManager $userManager, + private IUserSession $userSession, + ) { parent::__construct('core', $request); } |