14 lines
192 B
PHP
14 lines
192 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\GPodderSync\Core\PodcastData;
|
|
|
|
class PodcastMetricsReader
|
|
{
|
|
/**
|
|
* @return PodcastMetrics[]
|
|
*/
|
|
public function metrics(string $userId) {}
|
|
}
|