summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/tests
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 11:48:10 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 11:48:10 +0200
commit41b5e5923a44965e435d35d01b5009abb2dd5c97 (patch)
tree1d832f87ecbaa33c5ad6e09792e5ae5a0f760fe6 /apps/user_ldap/tests
parent813bdc1ce8a45039fa17aac12bd078466a0034d0 (diff)
downloadnextcloud-server-41b5e5923a44965e435d35d01b5009abb2dd5c97.tar.gz
nextcloud-server-41b5e5923a44965e435d35d01b5009abb2dd5c97.zip
Use exactly one empty line after the namespace declaration
For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/user_ldap/tests')
-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
7 files changed, 1 insertions, 6 deletions
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;