repod/stubs/OCA/GPodderSync/Core/PodcastData/PodcastActionCounts.php
Michel Roux 8d72eee723
All checks were successful
repod / nextcloud (push) Successful in 1m34s
repod / nodejs (push) Successful in 2m41s
Real stubs this time
2023-08-04 00:23:59 +02:00

36 lines
513 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
{
}
}