repod/stubs/OCA/GPodderSync/Core/PodcastData/PodcastData.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

103 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\PodcastData;
/**
* @psalm-type PodcastDataType = array{
* title: ?string,
* author: ?string,
* link: ?string,
* description: ?string,
* imageUrl: ?string,
* fetchedAtUnix: int,
* imageBlob: ?string
* }
*/
class PodcastData implements \JsonSerializable
{
/**
* @return PodcastData
* @throws \Exception if the XML data could not be parsed
*/
public static function parseRssXml(string $xmlString, ?int $fetchedAtUnix = null)
{
}
/**
* @return ?string
*/
public function getTitle()
{
}
/**
* @return ?string
*/
public function getAuthor()
{
}
/**
* @return ?string
*/
public function getLink()
{
}
/**
* @return ?string
*/
public function getDescription()
{
}
/**
* @return ?string
*/
public function getImageUrl()
{
}
/**
* @return ?int
*/
public function getFetchedAtUnix()
{
}
/**
* @return ?string
*/
public function getImageBlob()
{
}
public function setImageBlob(?string $blob): void
{
}
/**
* @return PodcastDataType
*/
public function toArray()
{
}
/**
* @return PodcastDataType
*/
public function jsonSerialize(): mixed
{
}
/**
* @param PodcastDataType $data
* @return PodcastData
*/
public static function fromArray(array $data)
{
}
}