repod/stubs/OCA/GPodderSync/Core/EpisodeAction/EpisodeAction.php
Michel Roux 8d72eee723
All checks were successful
repod / nextcloud (push) Successful in 1m34s
repod / nodejs (push) Successful in 2m41s
Real stubs this time
2023-08-04 00:23:59 +02:00

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()
{
}
}