diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-05 18:42:42 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-16 19:29:40 +0200 |
commit | d64aa85b0464933bd2dc25a56c0569c6dad6af19 (patch) | |
tree | 09e27885b4e046185bdde3d5fcc600bdeb63b547 /core/Controller/PreviewController.php | |
parent | 73b7096850a8cd4530c327f32acaacd6c9bcd279 (diff) | |
download | nextcloud-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.php | 12 |
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); } |