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