From 7cc459a46d7de992264f6674c27271476fc63cc4 Mon Sep 17 00:00:00 2001 From: Matthias Gutjahr Date: Fri, 15 Oct 2021 12:05:16 +0200 Subject: [PATCH] Add @method docblock tags for magic methods --- lib/Db/EpisodeAction/EpisodeActionEntity.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/Db/EpisodeAction/EpisodeActionEntity.php b/lib/Db/EpisodeAction/EpisodeActionEntity.php index ce18b1a..c5fc7b1 100644 --- a/lib/Db/EpisodeAction/EpisodeActionEntity.php +++ b/lib/Db/EpisodeAction/EpisodeActionEntity.php @@ -6,6 +6,17 @@ namespace OCA\GPodderSync\Db\EpisodeAction; use JsonSerializable; use OCP\AppFramework\Db\Entity; +/** + * @method string getPodcast() + * @method string getEpisode() + * @method string getAction() + * @method integer getTimestampEpoch() + * @method integer getStarted() + * @method integer getPosition() + * @method integer getTotal() + * @method string getGuid() + * @method string getUserId() + */ class EpisodeActionEntity extends Entity implements JsonSerializable { protected $podcast;