repod/stubs/OCA/GPodderSync/Core/SubscriptionChange/SubscriptionChange.php

15 lines
233 B
PHP
Raw Normal View History

2023-08-02 10:13:16 +00:00
<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\SubscriptionChange;
interface SubscriptionChange
{
public function __toString(): string;
public function isSubscribed(): bool;
public function getUrl(): string;
}