summaryrefslogtreecommitdiffstats
path: root/lib/Controller/PublicShareAuthController.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-04-13 13:17:49 +0200
committerJoas Schilling <coding@schilljs.com>2023-04-13 13:17:49 +0200
commitf3ff4a8820c3d3aedeffa4caee634407e8ac5aea (patch)
treee43214327b9e3a01e05a9932f2cde44d6402e9d1 /lib/Controller/PublicShareAuthController.php
parent349e1e8d6060f227c508f927985805a63bc89efb (diff)
automated: Apply CS fix
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller/PublicShareAuthController.php')
-rw-r--r--lib/Controller/PublicShareAuthController.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/Controller/PublicShareAuthController.php b/lib/Controller/PublicShareAuthController.php
index e01758535..6fbf6b2e6 100644
--- a/lib/Controller/PublicShareAuthController.php
+++ b/lib/Controller/PublicShareAuthController.php
@@ -33,8 +33,8 @@ use OCP\IRequest;
use OCP\IUser;
use OCP\IUserManager;
use OCP\IUserSession;
-use OCP\Share\IManager as IShareManager;
use OCP\Share\Exceptions\ShareNotFound;
+use OCP\Share\IManager as IShareManager;
use OCP\Share\IShare;
class PublicShareAuthController extends OCSController {
@@ -44,12 +44,12 @@ class PublicShareAuthController extends OCSController {
private RoomService $roomService;
public function __construct(
- string $appName,
- IRequest $request,
- IUserManager $userManager,
- IShareManager $shareManager,
- IUserSession $userSession,
- RoomService $roomService
+ string $appName,
+ IRequest $request,
+ IUserManager $userManager,
+ IShareManager $shareManager,
+ IUserSession $userSession,
+ RoomService $roomService
) {
parent::__construct($appName, $request);
$this->userManager = $userManager;