Add annotations

This commit is contained in:
Victor Dubiniuk 2014-05-13 23:17:25 +03:00
parent f68f7d8339
commit 6dd14dab72
2 changed files with 14 additions and 1 deletions

View File

@ -12,6 +12,12 @@
namespace OCA\Documents; namespace OCA\Documents;
/*
* @method boolean getIsGuest()
* @method string getEsId()
* @method string getToken()
*/
class Db_Member extends Db{ class Db_Member extends Db{
const DB_TABLE = '`*PREFIX*documents_member`'; const DB_TABLE = '`*PREFIX*documents_member`';

View File

@ -13,7 +13,14 @@
namespace OCA\Documents; namespace OCA\Documents;
/** /**
* Session management * Session management
*
* @method string getEsId()
* @method int getFileId()
* @method string getGenesisUrl()
* @method string getOwner()
* @method string getGenesisHash()
*
*/ */
class Db_Session extends \OCA\Documents\Db { class Db_Session extends \OCA\Documents\Db {