mirror of
https://git.crystalyx.net/Xefir/repod.git
synced 2024-12-29 10:10:56 +01:00
15 lines
233 B
PHP
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;
|
|
}
|