repod/lib/Service/IProvider.php
Michel Roux 4503df9d33
All checks were successful
repod / nextcloud (push) Successful in 44s
repod / nodejs (push) Successful in 1m15s
Refacto to services
2023-07-28 02:37:57 +02:00

24 lines
375 B
PHP

<?php
declare(strict_types=1);
namespace OCA\RePod\Service;
interface IProvider
{
/**
* @return array<array{
* provider: string,
* id: string,
* title: string,
* author: string,
* image: string,
* provider_url: string,
* feed_url: string,
* last_pub: string,
* nb_episodes: string
* }>
*/
public function search(string $value): array;
}