diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-05 18:35:32 +0330 |
---|---|---|
committer | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-05 18:35:32 +0330 |
commit | fc0e2a938fa8920120cbd611afb2eab7bccab021 (patch) | |
tree | 3deb4b59d84f809d0be4f9e3627dcf997612cad5 /core/Controller/AutoCompleteController.php | |
parent | 25cdc35473e583856e0ac9941f78330f2a05d999 (diff) | |
download | nextcloud-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/AutoCompleteController.php')
-rw-r--r-- | core/Controller/AutoCompleteController.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/core/Controller/AutoCompleteController.php b/core/Controller/AutoCompleteController.php index 4c1210c9ebc..29a0788ad57 100644 --- a/core/Controller/AutoCompleteController.php +++ b/core/Controller/AutoCompleteController.php @@ -40,11 +40,13 @@ use OCP\IRequest; use OCP\Share\IShare; class AutoCompleteController extends OCSController { - public function __construct(string $appName, - IRequest $request, - private ISearch $collaboratorSearch, - private IManager $autoCompleteManager, - private IEventDispatcher $dispatcher) { + public function __construct( + string $appName, + IRequest $request, + private ISearch $collaboratorSearch, + private IManager $autoCompleteManager, + private IEventDispatcher $dispatcher, + ) { parent::__construct($appName, $request); } |