aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller/ProfileApiController.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Controller/ProfileApiController.php')
-rw-r--r--core/Controller/ProfileApiController.php16
1 files changed, 4 insertions, 12 deletions
diff --git a/core/Controller/ProfileApiController.php b/core/Controller/ProfileApiController.php
index d9e20701eaa..a25ebaf846d 100644
--- a/core/Controller/ProfileApiController.php
+++ b/core/Controller/ProfileApiController.php
@@ -38,18 +38,10 @@ use OCP\IUserSession;
use OC\Profile\ProfileManager;
class ProfileApiController extends OCSController {
-
- /** @var ProfileConfigMapper */
- private $configMapper;
-
- /** @var ProfileManager */
- private $profileManager;
-
- /** @var IUserManager */
- private $userManager;
-
- /** @var IUserSession */
- private $userSession;
+ private ProfileConfigMapper $configMapper;
+ private ProfileManager $profileManager;
+ private IUserManager $userManager;
+ private IUserSession $userSession;
public function __construct(
IRequest $request,