Add PHPdoc

This commit is contained in:
Roeland Jago Douma 2016-08-14 19:41:00 +02:00
parent 291b3fd8b4
commit 6c360ad79f
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
1 changed files with 5 additions and 3 deletions

View File

@ -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();