Add @method docblock tags for magic methods

This commit is contained in:
Matthias Gutjahr 2021-10-15 12:05:16 +02:00 committed by thrillfall
parent 1d2056e025
commit 7cc459a46d
1 changed files with 11 additions and 0 deletions

View File

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