summaryrefslogtreecommitdiffstats
path: root/lib/Controller/MatterbridgeSettingsController.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/MatterbridgeSettingsController.php
parent349e1e8d6060f227c508f927985805a63bc89efb (diff)
automated: Apply CS fix
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller/MatterbridgeSettingsController.php')
-rw-r--r--lib/Controller/MatterbridgeSettingsController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Controller/MatterbridgeSettingsController.php b/lib/Controller/MatterbridgeSettingsController.php
index cf2eed3cf..4d01dc636 100644
--- a/lib/Controller/MatterbridgeSettingsController.php
+++ b/lib/Controller/MatterbridgeSettingsController.php
@@ -25,9 +25,9 @@ declare(strict_types=1);
namespace OCA\Talk\Controller;
-use OCA\Talk\MatterbridgeManager;
use OCA\Talk\Exceptions\ImpossibleToKillException;
use OCA\Talk\Exceptions\WrongPermissionsException;
+use OCA\Talk\MatterbridgeManager;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\OCSController;
@@ -37,8 +37,8 @@ class MatterbridgeSettingsController extends OCSController {
protected MatterbridgeManager $bridgeManager;
public function __construct(string $appName,
- IRequest $request,
- MatterbridgeManager $bridgeManager) {
+ IRequest $request,
+ MatterbridgeManager $bridgeManager) {
parent::__construct($appName, $request);
$this->bridgeManager = $bridgeManager;
}