repod/stubs/OCA/GPodderSync/Db/SubscriptionChange/SubscriptionChangeEntity.php

18 lines
283 B
PHP
Raw Normal View History

2023-08-24 10:48:10 +00:00
<?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
{
}
}