repod/stubs/OCA/GPodderSync/Db/SubscriptionChange/SubscriptionChangeEntity.php
Michel Roux 3f9bc372ce
All checks were successful
repod / nextcloud (push) Successful in 1m51s
repod / nodejs (push) Successful in 2m43s
EpisodeActionExtra done
2023-08-24 12:48:10 +02:00

18 lines
283 B
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Db\SubscriptionChange;
use OCP\AppFramework\Db\Entity;
class SubscriptionChangeEntity extends Entity implements \JsonSerializable
{
/**
* @return array<string,mixed>
*/
public function jsonSerialize(): mixed
{
}
}