diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 11:48:10 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 11:48:10 +0200 |
commit | 41b5e5923a44965e435d35d01b5009abb2dd5c97 (patch) | |
tree | 1d832f87ecbaa33c5ad6e09792e5ae5a0f760fe6 /apps/user_ldap | |
parent | 813bdc1ce8a45039fa17aac12bd078466a0034d0 (diff) | |
download | nextcloud-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')
-rw-r--r-- | apps/user_ldap/lib/AccessFactory.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/BackendUtility.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/Command/DeleteConfig.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/ConnectionFactory.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/ILDAPGroupPlugin.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/ILDAPUserPlugin.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/LDAPProvider.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/Migration/UUIDFix.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/Notification/Notifier.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/tests/ConnectionTest.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/tests/GroupLDAPPluginTest.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/tests/HelperTest.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/tests/LDAPGroupPluginDummy.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/tests/LDAPUserPluginDummy.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/tests/UserLDAPPluginTest.php | 1 |
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; |