Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-10-14 18:54:55 +0300
committerJoas Schilling <coding@schilljs.com>2020-10-30 12:38:08 +0300
commit94cea96d628e0fa6c99aa74acfded8db21460f21 (patch)
tree90d02f527db9af07fb75e1a30b16516c3696ed5d /lib
parent61504d5c6f5cde31d0f880c69aabd4f30bde5246 (diff)
Fix PHP CS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Controller/SettingsController.php1
-rw-r--r--lib/Manager.php1
-rw-r--r--lib/Migration/Version10000Date20201012144235.php2
3 files changed, 0 insertions, 4 deletions
diff --git a/lib/Controller/SettingsController.php b/lib/Controller/SettingsController.php
index 2de96ae5d..15f4e9603 100644
--- a/lib/Controller/SettingsController.php
+++ b/lib/Controller/SettingsController.php
@@ -116,7 +116,6 @@ class SettingsController extends OCSController {
array $sipGroups = [],
string $dialInInfo = '',
string $sharedSecret = ''): DataResponse {
-
$groups = [];
foreach ($sipGroups as $gid) {
$group = $this->groupManager->get($gid);
diff --git a/lib/Manager.php b/lib/Manager.php
index fb8147f88..1df220f7d 100644
--- a/lib/Manager.php
+++ b/lib/Manager.php
@@ -24,7 +24,6 @@ declare(strict_types=1);
namespace OCA\Talk;
use OCA\Talk\Chat\CommentsManager;
-use OCA\Talk\Events\CreateRoomTokenEvent;
use OCA\Talk\Events\RoomEvent;
use OCA\Talk\Exceptions\ParticipantNotFoundException;
use OCA\Talk\Exceptions\RoomNotFoundException;
diff --git a/lib/Migration/Version10000Date20201012144235.php b/lib/Migration/Version10000Date20201012144235.php
index d76142930..9ee1d7f89 100644
--- a/lib/Migration/Version10000Date20201012144235.php
+++ b/lib/Migration/Version10000Date20201012144235.php
@@ -32,7 +32,6 @@ use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
class Version10000Date20201012144235 extends SimpleMigrationStep {
-
/**
* @param IOutput $output
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
@@ -52,5 +51,4 @@ class Version10000Date20201012144235 extends SimpleMigrationStep {
return $schema;
}
-
}