2023-07-28 00:37:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\RePod\Service;
|
|
|
|
|
2023-08-22 17:41:17 +00:00
|
|
|
use OCA\GPodderSync\Core\PodcastData\PodcastData;
|
|
|
|
|
2024-01-18 10:43:58 +00:00
|
|
|
interface IPodProvider
|
2023-07-28 00:37:57 +00:00
|
|
|
{
|
|
|
|
/**
|
2023-08-22 17:41:17 +00:00
|
|
|
* @return PodcastData[]
|
2023-07-28 00:37:57 +00:00
|
|
|
*/
|
|
|
|
public function search(string $value): array;
|
|
|
|
}
|