aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/User
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/User')
-rw-r--r--lib/private/User/Backend.php2
-rw-r--r--lib/private/User/Database.php14
-rw-r--r--lib/private/User/LoginException.php2
-rw-r--r--lib/private/User/Manager.php3
-rw-r--r--lib/private/User/NoUserException.php1
-rw-r--r--lib/private/User/Session.php1
-rw-r--r--lib/private/User/User.php4
7 files changed, 3 insertions, 24 deletions
diff --git a/lib/private/User/Backend.php b/lib/private/User/Backend.php
index d70d13673cb..b68e4c2e541 100644
--- a/lib/private/User/Backend.php
+++ b/lib/private/User/Backend.php
@@ -3,6 +3,7 @@
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
+ * @author Joas Schilling <coding@schilljs.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
*
@@ -21,7 +22,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
-
namespace OC\User;
use OCP\UserInterface;
diff --git a/lib/private/User/Database.php b/lib/private/User/Database.php
index 6c04a1b900e..5dfc74163a7 100644
--- a/lib/private/User/Database.php
+++ b/lib/private/User/Database.php
@@ -43,20 +43,6 @@ declare(strict_types=1);
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
-
-/*
- *
- * The following SQL statement is just a help for developers and will not be
- * executed!
- *
- * CREATE TABLE `users` (
- * `uid` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
- * `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
- * PRIMARY KEY (`uid`)
- * ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
- *
- */
-
namespace OC\User;
use OC\Cache\CappedMemoryCache;
diff --git a/lib/private/User/LoginException.php b/lib/private/User/LoginException.php
index 77e70d07075..7133b7b76dc 100644
--- a/lib/private/User/LoginException.php
+++ b/lib/private/User/LoginException.php
@@ -2,7 +2,6 @@
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
- * @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <robin@icewind.nl>
*
* @license AGPL-3.0
@@ -20,7 +19,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
-
namespace OC\User;
class LoginException extends \Exception {
diff --git a/lib/private/User/Manager.php b/lib/private/User/Manager.php
index 59c007b6b59..07a599cf017 100644
--- a/lib/private/User/Manager.php
+++ b/lib/private/User/Manager.php
@@ -7,7 +7,7 @@
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Georg Ehrke <oc.list@georgehrke.com>
* @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
+ * @author John Molakvoæ <skjnldsv@protonmail.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Lukas Reschke <lukas@statuscode.ch>
* @author Morris Jobke <hey@morrisjobke.de>
@@ -31,7 +31,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
-
namespace OC\User;
use OC\HintException;
diff --git a/lib/private/User/NoUserException.php b/lib/private/User/NoUserException.php
index 57bb47109f1..d9149318467 100644
--- a/lib/private/User/NoUserException.php
+++ b/lib/private/User/NoUserException.php
@@ -20,7 +20,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
-
namespace OC\User;
class NoUserException extends \Exception {
diff --git a/lib/private/User/Session.php b/lib/private/User/Session.php
index 5e6501f9045..4ce99512040 100644
--- a/lib/private/User/Session.php
+++ b/lib/private/User/Session.php
@@ -36,7 +36,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
-
namespace OC\User;
use OC;
diff --git a/lib/private/User/User.php b/lib/private/User/User.php
index 771cb431cbd..cae698300d9 100644
--- a/lib/private/User/User.php
+++ b/lib/private/User/User.php
@@ -7,7 +7,7 @@
* @author Björn Schießle <bjoern@schiessle.org>
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
+ * @author John Molakvoæ <skjnldsv@protonmail.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Julius Härtl <jus@bitgrid.net>
* @author Leon Klingele <leon@struktur.de>
@@ -16,7 +16,6 @@
* @author Robin Appelman <robin@icewind.nl>
* @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vincent Petry <vincent@nextcloud.com>
*
* @license AGPL-3.0
*
@@ -33,7 +32,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
-
namespace OC\User;
use OC\Accounts\AccountManager;