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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 17:14:31 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 17:14:31 +0300
commitf4c09f299d989b117ebdf769632dcc6d4582791c (patch)
treee838ae71bb9424b25c824e563c634203ffe3a9d2
parentbcd13296def0ac8b8fb48067472f1019d5715895 (diff)
Make sure there is exactly one newline after imports
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--apps/files_external/templates/settings.php8
-rw-r--r--apps/files_sharing/lib/Exceptions/SharingRightsException.php1
-rw-r--r--apps/settings/tests/Settings/Admin/ServerTest.php1
-rw-r--r--lib/private/Mail/Mailer.php1
4 files changed, 4 insertions, 7 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php
index 5ec70031214..0142b206b3e 100644
--- a/apps/files_external/templates/settings.php
+++ b/apps/files_external/templates/settings.php
@@ -1,10 +1,10 @@
<?php
use \OCA\Files_External\Lib\Backend\Backend;
- use \OCA\Files_External\Lib\Auth\AuthMechanism;
- use \OCA\Files_External\Lib\DefinitionParameter;
- use \OCA\Files_External\Service\BackendService;
+use \OCA\Files_External\Lib\Auth\AuthMechanism;
+use \OCA\Files_External\Lib\DefinitionParameter;
+use \OCA\Files_External\Service\BackendService;
- $canCreateMounts = $_['visibilityType'] === BackendService::VISIBILITY_ADMIN || $_['allowUserMounting'];
+$canCreateMounts = $_['visibilityType'] === BackendService::VISIBILITY_ADMIN || $_['allowUserMounting'];
$l->t("Enable encryption");
$l->t("Enable previews");
diff --git a/apps/files_sharing/lib/Exceptions/SharingRightsException.php b/apps/files_sharing/lib/Exceptions/SharingRightsException.php
index 3df5754e0a1..02d197d4034 100644
--- a/apps/files_sharing/lib/Exceptions/SharingRightsException.php
+++ b/apps/files_sharing/lib/Exceptions/SharingRightsException.php
@@ -25,7 +25,6 @@ namespace OCA\Files_Sharing\Exceptions;
use Exception;
-
/**
* Sharing and Resharing rights.
*
diff --git a/apps/settings/tests/Settings/Admin/ServerTest.php b/apps/settings/tests/Settings/Admin/ServerTest.php
index 3758d8635de..d066f5c2f49 100644
--- a/apps/settings/tests/Settings/Admin/ServerTest.php
+++ b/apps/settings/tests/Settings/Admin/ServerTest.php
@@ -40,7 +40,6 @@ use OCP\IDBConnection;
use PHPUnit\Framework\MockObject\MockObject;
use Test\TestCase;
-
/**
* @group DB
*/
diff --git a/lib/private/Mail/Mailer.php b/lib/private/Mail/Mailer.php
index f8af68faad3..c07556b6a62 100644
--- a/lib/private/Mail/Mailer.php
+++ b/lib/private/Mail/Mailer.php
@@ -47,7 +47,6 @@ use OCP\Mail\IMailer;
use OCP\Mail\IMessage;
use OCP\Mail\Events\BeforeMessageSent;
-
/**
* Class Mailer provides some basic functions to create a mail message that can be used in combination with
* \OC\Mail\Message.