Explain the methods of the Attach entity

This commit is contained in:
Matias De lellis
2021-09-20 19:34:53 -03:00
parent 79a8af54de
commit 930da59283

View File

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