repod/stubs/OCA/GPodderSync/Core/SubscriptionChange/SubscriptionChange.php
Michel Roux df30ff2318
All checks were successful
repod / nextcloud (push) Successful in 47s
repod / nodejs (push) Successful in 1m18s
Readd gpodder stubs
2023-08-02 12:13:16 +02:00

15 lines
233 B
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\SubscriptionChange;
interface SubscriptionChange
{
public function __toString(): string;
public function isSubscribed(): bool;
public function getUrl(): string;
}