repod/stubs/OCA/GPodderSync/Core/PodcastData/PodcastData.php

103 lines
1.3 KiB
PHP
Raw Normal View History

2023-08-02 10:13:16 +00:00
<?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
* }
*/
2023-08-03 22:23:59 +00:00
class PodcastData implements \JsonSerializable
2023-08-02 10:13:16 +00:00
{
/**
2023-08-03 22:23:59 +00:00
* @return PodcastData
* @throws \Exception if the XML data could not be parsed
2023-08-02 10:13:16 +00:00
*/
2023-08-03 22:23:59 +00:00
public static function parseRssXml(string $xmlString, ?int $fetchedAtUnix = null)
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
/**
* @return ?string
*/
public function getTitle()
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
/**
* @return ?string
*/
public function getAuthor()
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
/**
* @return ?string
*/
public function getLink()
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
/**
* @return ?string
*/
public function getDescription()
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
/**
* @return ?string
*/
public function getImageUrl()
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
/**
* @return ?int
*/
public function getFetchedAtUnix()
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
/**
* @return ?string
*/
public function getImageBlob()
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
public function setImageBlob(?string $blob): void
{
}
2023-08-02 10:13:16 +00:00
/**
* @return PodcastDataType
*/
2023-08-03 22:23:59 +00:00
public function toArray()
{
}
2023-08-02 10:13:16 +00:00
/**
* @return PodcastDataType
*/
2023-08-03 22:23:59 +00:00
public function jsonSerialize(): mixed
{
}
2023-08-02 10:13:16 +00:00
/**
2023-08-03 22:23:59 +00:00
* @param PodcastDataType $data
* @return PodcastData
2023-08-02 10:13:16 +00:00
*/
2023-08-03 22:23:59 +00:00
public static function fromArray(array $data)
{
}
2023-08-02 10:13:16 +00:00
}