92 lines
976 B
PHP
92 lines
976 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\GPodderSync\Core\EpisodeAction;
|
|
|
|
/**
|
|
* @psalm-type EpisodeActionType = array{
|
|
* podcast: string,
|
|
* episode: string,
|
|
* action: string,
|
|
* timestamp: string,
|
|
* started: int,
|
|
* position: int,
|
|
* total: int,
|
|
* guid: ?string,
|
|
* id: int
|
|
* }
|
|
*/
|
|
class EpisodeAction
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getPodcast()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEpisode()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getAction()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTimestamp()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getStarted()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getPosition()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getTotal()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return ?string
|
|
*/
|
|
public function getGuid()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getId()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return EpisodeActionType
|
|
*/
|
|
public function toArray()
|
|
{
|
|
}
|
|
}
|