repod/stubs/OCA/GPodderSync/Core/PodcastData/PodcastMetricsReader.php

16 lines
195 B
PHP
Raw Normal View History

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