aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller/ReferenceApiController.php
diff options
context:
space:
mode:
authorFaraz Samapoor <f.samapoor@gmail.com>2023-06-05 18:42:42 +0330
committerLouis <6653109+artonge@users.noreply.github.com>2023-06-16 19:29:40 +0200
commitd64aa85b0464933bd2dc25a56c0569c6dad6af19 (patch)
tree09e27885b4e046185bdde3d5fcc600bdeb63b547 /core/Controller/ReferenceApiController.php
parent73b7096850a8cd4530c327f32acaacd6c9bcd279 (diff)
downloadnextcloud-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/ReferenceApiController.php')
-rw-r--r--core/Controller/ReferenceApiController.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/core/Controller/ReferenceApiController.php b/core/Controller/ReferenceApiController.php
index 25d78e153e8..3df2e41c2a9 100644
--- a/core/Controller/ReferenceApiController.php
+++ b/core/Controller/ReferenceApiController.php
@@ -30,10 +30,12 @@ use OCP\Collaboration\Reference\IReferenceManager;
use OCP\IRequest;
class ReferenceApiController extends \OCP\AppFramework\OCSController {
- public function __construct(string $appName,
- IRequest $request,
- private IReferenceManager $referenceManager,
- private ?string $userId) {
+ public function __construct(
+ string $appName,
+ IRequest $request,
+ private IReferenceManager $referenceManager,
+ private ?string $userId,
+ ) {
parent::__construct($appName, $request);
}