From 930da59283d4dc5e5a513431a5096555068a934c Mon Sep 17 00:00:00 2001 From: Matias De lellis Date: Mon, 20 Sep 2021 19:34:53 -0300 Subject: [PATCH] Explain the methods of the Attach entity --- lib/Db/Attach.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/Db/Attach.php b/lib/Db/Attach.php index a542f5b..4be6f16 100644 --- a/lib/Db/Attach.php +++ b/lib/Db/Attach.php @@ -5,11 +5,23 @@ 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 getFileId() + * @method void setFileId(int $fileId) + * @method int getCreatedAt() + * @method void setCreatedAt(int $createdAt) + */ + class Attach extends Entity implements JsonSerializable { protected $userId; protected $noteId; protected $fileId; protected $createdAt; + protected $previewUrl; protected $redirectUrl; protected $deepLinkUrl;