2023-08-02 12:13:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\GPodderSync\Core\PodcastData;
|
|
|
|
|
2023-08-04 00:23:59 +02:00
|
|
|
class PodcastMetricsReader
|
2023-08-02 12:13:16 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return PodcastMetrics[]
|
|
|
|
*/
|
2023-12-23 17:25:20 +01:00
|
|
|
public function metrics(string $userId) {}
|
2023-08-02 12:13:16 +02:00
|
|
|
}
|