aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFaraz Samapoor <f.samapoor@gmail.com>2023-06-05 18:26:27 +0330
committerGitHub <noreply@github.com>2023-06-05 18:26:27 +0330
commit25cdc35473e583856e0ac9941f78330f2a05d999 (patch)
tree68901f470abea5626282ab8feab4c5aee909ceb7 /core
parent05784c32446b724a8fead992dbe4ee584defcabd (diff)
downloadnextcloud-server-25cdc35473e583856e0ac9941f78330f2a05d999.tar.gz
nextcloud-server-25cdc35473e583856e0ac9941f78330f2a05d999.zip
Update core/Controller/AppPasswordController.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/AppPasswordController.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/Controller/AppPasswordController.php b/core/Controller/AppPasswordController.php
index 266b9598679..90020330ea1 100644
--- a/core/Controller/AppPasswordController.php
+++ b/core/Controller/AppPasswordController.php
@@ -45,11 +45,12 @@ class AppPasswordController extends \OCP\AppFramework\OCSController {
public function __construct(
string $appName,
IRequest $request,
- private ISession $session,
- private ISecureRandom $random,
- private IProvider $tokenProvider,
- private IStore $credentialStore,
- private IEventDispatcher $eventDispatcher) {
+ private ISession $session,
+ private ISecureRandom $random,
+ private IProvider $tokenProvider,
+ private IStore $credentialStore,
+ private IEventDispatcher $eventDispatcher,
+ ) {
parent::__construct($appName, $request);
}