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