mirror of
https://git.crystalyx.net/Xefir/repod.git
synced 2025-01-16 19:01:44 +01:00
14 lines
201 B
PHP
14 lines
201 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OCA\GPodderSync\Core\PodcastData;
|
||
|
|
||
|
interface PodcastMetricsReader
|
||
|
{
|
||
|
/**
|
||
|
* @return PodcastMetrics[]
|
||
|
*/
|
||
|
public function metrics(string $userId): array;
|
||
|
}
|