From 69c15d4b8c6ce063dab08bf65b292fcd059153bf Mon Sep 17 00:00:00 2001 From: Matias De lellis Date: Mon, 20 Sep 2021 19:40:30 -0300 Subject: [PATCH] Explain the methods of the NoteTag entity --- lib/Db/NoteTag.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/Db/NoteTag.php b/lib/Db/NoteTag.php index c68d5de..d7edd6a 100644 --- a/lib/Db/NoteTag.php +++ b/lib/Db/NoteTag.php @@ -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;