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 <ChristophWurst@users.noreply.github.com>2020-04-09 14:44:39 +0300
committerGitHub <noreply@github.com>2020-04-09 14:44:39 +0300
commit19e97e86c69ab128191439d6a17dacb5a630cf98 (patch)
tree95b913a59a6512e54ef848aa03095cdfdc7a92c5 /apps/user_ldap
parent813bdc1ce8a45039fa17aac12bd078466a0034d0 (diff)
parent2a529e453a7de7f51ab72ac48f947fa9d2afd18d (diff)
Merge pull request #20379 from nextcloud/techdebt/blank-lines
Use one blank line after the opening tag and namespace declaration
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/AccessFactory.php1
-rw-r--r--apps/user_ldap/lib/BackendUtility.php1
-rw-r--r--apps/user_ldap/lib/Command/DeleteConfig.php1
-rw-r--r--apps/user_ldap/lib/ConnectionFactory.php1
-rw-r--r--apps/user_ldap/lib/ILDAPGroupPlugin.php1
-rw-r--r--apps/user_ldap/lib/ILDAPUserPlugin.php1
-rw-r--r--apps/user_ldap/lib/LDAPProvider.php1
-rw-r--r--apps/user_ldap/lib/Migration/UUIDFix.php1
-rw-r--r--apps/user_ldap/lib/Notification/Notifier.php1
-rw-r--r--apps/user_ldap/tests/ConnectionTest.php1
-rw-r--r--apps/user_ldap/tests/GroupLDAPPluginTest.php1
-rw-r--r--apps/user_ldap/tests/HelperTest.php1
-rw-r--r--apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php1
-rw-r--r--apps/user_ldap/tests/LDAPGroupPluginDummy.php1
-rw-r--r--apps/user_ldap/tests/LDAPUserPluginDummy.php1
-rw-r--r--apps/user_ldap/tests/UserLDAPPluginTest.php1
16 files changed, 1 insertions, 15 deletions
diff --git a/apps/user_ldap/lib/AccessFactory.php b/apps/user_ldap/lib/AccessFactory.php
index aa344893f03..04d72a16f29 100644
--- a/apps/user_ldap/lib/AccessFactory.php
+++ b/apps/user_ldap/lib/AccessFactory.php
@@ -23,7 +23,6 @@
namespace OCA\User_LDAP;
-
use OCA\User_LDAP\User\Manager;
use OCP\IConfig;
use OCP\IUserManager;
diff --git a/apps/user_ldap/lib/BackendUtility.php b/apps/user_ldap/lib/BackendUtility.php
index 8922f6e8cfe..a4eb739ab66 100644
--- a/apps/user_ldap/lib/BackendUtility.php
+++ b/apps/user_ldap/lib/BackendUtility.php
@@ -25,7 +25,6 @@
namespace OCA\User_LDAP;
-
abstract class BackendUtility {
protected $access;
diff --git a/apps/user_ldap/lib/Command/DeleteConfig.php b/apps/user_ldap/lib/Command/DeleteConfig.php
index 7739580740f..f62caf2902a 100644
--- a/apps/user_ldap/lib/Command/DeleteConfig.php
+++ b/apps/user_ldap/lib/Command/DeleteConfig.php
@@ -25,7 +25,6 @@
namespace OCA\User_LDAP\Command;
-
use OCA\User_LDAP\Helper;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
diff --git a/apps/user_ldap/lib/ConnectionFactory.php b/apps/user_ldap/lib/ConnectionFactory.php
index fceed8b2532..48275ff8c3c 100644
--- a/apps/user_ldap/lib/ConnectionFactory.php
+++ b/apps/user_ldap/lib/ConnectionFactory.php
@@ -23,7 +23,6 @@
namespace OCA\User_LDAP;
-
class ConnectionFactory {
/** @var ILDAPWrapper */
private $ldap;
diff --git a/apps/user_ldap/lib/ILDAPGroupPlugin.php b/apps/user_ldap/lib/ILDAPGroupPlugin.php
index 78dc39ad299..3a5accece26 100644
--- a/apps/user_ldap/lib/ILDAPGroupPlugin.php
+++ b/apps/user_ldap/lib/ILDAPGroupPlugin.php
@@ -23,7 +23,6 @@
namespace OCA\User_LDAP;
-
interface ILDAPGroupPlugin {
/**
diff --git a/apps/user_ldap/lib/ILDAPUserPlugin.php b/apps/user_ldap/lib/ILDAPUserPlugin.php
index 26dbffb3806..29397b6c205 100644
--- a/apps/user_ldap/lib/ILDAPUserPlugin.php
+++ b/apps/user_ldap/lib/ILDAPUserPlugin.php
@@ -24,7 +24,6 @@
namespace OCA\User_LDAP;
-
interface ILDAPUserPlugin {
/**
diff --git a/apps/user_ldap/lib/LDAPProvider.php b/apps/user_ldap/lib/LDAPProvider.php
index 31bf2531a96..1916e10b8cd 100644
--- a/apps/user_ldap/lib/LDAPProvider.php
+++ b/apps/user_ldap/lib/LDAPProvider.php
@@ -28,7 +28,6 @@
namespace OCA\User_LDAP;
-
use OCA\User_LDAP\User\DeletedUsersIndex;
use OCP\IServerContainer;
use OCP\LDAP\IDeletionFlagSupport;
diff --git a/apps/user_ldap/lib/Migration/UUIDFix.php b/apps/user_ldap/lib/Migration/UUIDFix.php
index c241a8a28a0..f6359c2e882 100644
--- a/apps/user_ldap/lib/Migration/UUIDFix.php
+++ b/apps/user_ldap/lib/Migration/UUIDFix.php
@@ -23,7 +23,6 @@
namespace OCA\User_LDAP\Migration;
-
use OC\BackgroundJob\QueuedJob;
use OCA\User_LDAP\Mapping\AbstractMapping;
use OCA\User_LDAP\Proxy;
diff --git a/apps/user_ldap/lib/Notification/Notifier.php b/apps/user_ldap/lib/Notification/Notifier.php
index eb4a8296548..773242a635b 100644
--- a/apps/user_ldap/lib/Notification/Notifier.php
+++ b/apps/user_ldap/lib/Notification/Notifier.php
@@ -25,7 +25,6 @@
namespace OCA\User_LDAP\Notification;
-
use OCP\L10N\IFactory;
use OCP\Notification\INotification;
use OCP\Notification\INotifier;
diff --git a/apps/user_ldap/tests/ConnectionTest.php b/apps/user_ldap/tests/ConnectionTest.php
index 59e6476ab45..8a4ec38e4bd 100644
--- a/apps/user_ldap/tests/ConnectionTest.php
+++ b/apps/user_ldap/tests/ConnectionTest.php
@@ -29,6 +29,7 @@
*/
namespace OCA\User_LDAP\Tests;
+
use OCA\User_LDAP\Connection;
use OCA\User_LDAP\ILDAPWrapper;
diff --git a/apps/user_ldap/tests/GroupLDAPPluginTest.php b/apps/user_ldap/tests/GroupLDAPPluginTest.php
index e971b073cc5..73c5271960b 100644
--- a/apps/user_ldap/tests/GroupLDAPPluginTest.php
+++ b/apps/user_ldap/tests/GroupLDAPPluginTest.php
@@ -24,7 +24,6 @@
namespace OCA\User_LDAP\Tests;
-
use OCA\User_LDAP\GroupPluginManager;
use OCP\GroupInterface;
diff --git a/apps/user_ldap/tests/HelperTest.php b/apps/user_ldap/tests/HelperTest.php
index c0fa693ff48..a803e5d284a 100644
--- a/apps/user_ldap/tests/HelperTest.php
+++ b/apps/user_ldap/tests/HelperTest.php
@@ -25,7 +25,6 @@
namespace OCA\User_LDAP\Tests;
-
use OCA\User_LDAP\Helper;
use OCP\IConfig;
diff --git a/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php b/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
index 385d2c29610..50c45b49048 100644
--- a/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
+++ b/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
@@ -26,7 +26,6 @@
namespace OCA\User_LDAP\Tests\Integration;
-
use OC\ServerNotAvailableException;
use OCA\User_LDAP\LDAP;
diff --git a/apps/user_ldap/tests/LDAPGroupPluginDummy.php b/apps/user_ldap/tests/LDAPGroupPluginDummy.php
index 224e8f93f5a..996f6f4a3f0 100644
--- a/apps/user_ldap/tests/LDAPGroupPluginDummy.php
+++ b/apps/user_ldap/tests/LDAPGroupPluginDummy.php
@@ -23,7 +23,6 @@
namespace OCA\User_LDAP\Tests;
-
use OCA\User_LDAP\ILDAPGroupPlugin;
class LDAPGroupPluginDummy implements ILDAPGroupPlugin {
diff --git a/apps/user_ldap/tests/LDAPUserPluginDummy.php b/apps/user_ldap/tests/LDAPUserPluginDummy.php
index 9ab7479a728..609742d872d 100644
--- a/apps/user_ldap/tests/LDAPUserPluginDummy.php
+++ b/apps/user_ldap/tests/LDAPUserPluginDummy.php
@@ -23,7 +23,6 @@
namespace OCA\User_LDAP\Tests;
-
use OCA\User_LDAP\ILDAPUserPlugin;
class LDAPUserPluginDummy implements ILDAPUserPlugin {
diff --git a/apps/user_ldap/tests/UserLDAPPluginTest.php b/apps/user_ldap/tests/UserLDAPPluginTest.php
index 1c624b7d340..58bc63e442f 100644
--- a/apps/user_ldap/tests/UserLDAPPluginTest.php
+++ b/apps/user_ldap/tests/UserLDAPPluginTest.php
@@ -24,7 +24,6 @@
namespace OCA\User_LDAP\Tests;
-
use OC\User\Backend;
use OCA\User_LDAP\UserPluginManager;