repod/stubs/OCA/GPodderSync/Db/SubscriptionChange/SubscriptionChangeEntity.php
Michel Roux c8f2e33b57
All checks were successful
repod / nextcloud (push) Successful in 1m8s
repod / xml (push) Successful in 27s
repod / nodejs (push) Successful in 1m52s
Fix psalm
2023-12-23 16:50:52 +00:00

18 lines
294 B
PHP

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