aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller/PreviewController.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/PreviewController.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/PreviewController.php')
-rw-r--r--core/Controller/PreviewController.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/core/Controller/PreviewController.php b/core/Controller/PreviewController.php
index d742af20e1d..38373e2d147 100644
--- a/core/Controller/PreviewController.php
+++ b/core/Controller/PreviewController.php
@@ -40,11 +40,13 @@ use OCP\IPreview;
use OCP\IRequest;
class PreviewController extends Controller {
- public function __construct(string $appName,
- IRequest $request,
- private IPreview $preview,
- private IRootFolder $root,
- private ?string $userId) {
+ public function __construct(
+ string $appName,
+ IRequest $request,
+ private IPreview $preview,
+ private IRootFolder $root,
+ private ?string $userId,
+ ) {
parent::__construct($appName, $request);
}