repod/stubs/OCA/GPodderSync/Core/PodcastData/PodcastActionCounts.php
Michel Roux 93e4998394
Some checks failed
repod / nextcloud (push) Successful in 56s
repod / xml (push) Successful in 13s
repod / nodejs (push) Failing after 1m50s
cs fix
2023-12-23 16:25:20 +00:00

30 lines
504 B
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\PodcastData;
/**
* @psalm-type PodcastActionCountsType = array{
* delete: int,
* download: int,
* flattr: int,
* new: int,
* play: int
* }
*/
class PodcastActionCounts implements \JsonSerializable
{
public function incrementAction(string $action): void {}
/**
* @return PodcastActionCountsType
*/
public function toArray() {}
/**
* @return PodcastActionCountsType
*/
public function jsonSerialize(): mixed {}
}