Add phpdoc @method tags for setters

This commit is contained in:
Matthias Gutjahr 2021-10-18 10:55:00 +02:00 committed by thrillfall
parent 93bfcecf15
commit b41a57d3a5
1 changed files with 9 additions and 0 deletions

View File

@ -8,14 +8,23 @@ use OCP\AppFramework\Db\Entity;
/**
* @method string getPodcast()
* @method void setPodcast(string $podcast)
* @method string getEpisode()
* @method void setEpisode(string $episode)
* @method string getAction()
* @method void setAction(string $action)
* @method integer getTimestampEpoch()
* @method void setTimestampEpoch(mixed $timestampEpoch)
* @method integer getStarted()
* @method void setStarted(integer $started)
* @method integer getPosition()
* @method void setPosition(integer $position)
* @method integer getTotal()
* @method void setTotal(integer $total)
* @method string getGuid()
* @method void setGuid(string $guid)
* @method string getUserId()
* @method void setUserId(string $userId)
*/
class EpisodeActionEntity extends Entity implements JsonSerializable {