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

15 lines
230 B
PHP
Raw Normal View History

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