Add @method docblock tags for magic methods
This commit is contained in:
parent
1d2056e025
commit
7cc459a46d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue