Explain the methods of the NoteTag entity

This commit is contained in:
Matias De lellis
2021-09-20 19:40:30 -03:00
parent 930da59283
commit 69c15d4b8c

View File

@@ -5,6 +5,14 @@ use JsonSerializable;
use OCP\AppFramework\Db\Entity;
/**
* @method string getUserId()
* @method void setUserId(string $userId)
* @method int getNoteId()
* @method void setNoteId(int $noteId)
* @method int getTagId()
* @method void setTagId(int $tagId)
*/
class NoteTag extends Entity implements JsonSerializable {
protected $noteId;