summaryrefslogtreecommitdiffstats
path: root/lib/private/User
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2016-08-14 19:41:00 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2016-08-15 11:14:28 +0200
commit6c360ad79fa5bfe7825cefc3160cb558eda85315 (patch)
tree0cbd79b6c0b4308937a4582a5b3895ebf98a89cc /lib/private/User
parent291b3fd8b45a781a4bf312e7f922b90d6c494487 (diff)
downloadnextcloud-server-6c360ad79fa5bfe7825cefc3160cb558eda85315.tar.gz
nextcloud-server-6c360ad79fa5bfe7825cefc3160cb558eda85315.zip
Add PHPdoc
Diffstat (limited to 'lib/private/User')
-rw-r--r--lib/private/User/Database.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/private/User/Database.php b/lib/private/User/Database.php
index 6406c1285c2..eba7beffeae 100644
--- a/lib/private/User/Database.php
+++ b/lib/private/User/Database.php
@@ -53,10 +53,10 @@
namespace OC\User;
use OC\Cache\CappedMemoryCache;
-use Symfony\Component\EventDispatcher\EventDispatcher;
-use Symfony\Component\EventDispatcher\GenericEvent;
use OCP\IUserBackend;
use OCP\Util;
+use Symfony\Component\EventDispatcher\EventDispatcher;
+use Symfony\Component\EventDispatcher\GenericEvent;
/**
* Class for user management in a SQL Database (e.g. MySQL, SQLite)
@@ -69,7 +69,9 @@ class Database extends Backend implements IUserBackend {
private $eventDispatcher;
/**
- * OC_User_Database constructor.
+ * \OC\User\Database constructor.
+ *
+ * @param EventDispatcher $eventDispatcher
*/
public function __construct($eventDispatcher = null) {
$this->cache = new CappedMemoryCache();