repod/stubs/OCA/GPodderSync/Core/SubscriptionChange/SubscriptionChange.php
Michel Roux 941e1cabbd
All checks were successful
repod / nextcloud (push) Successful in 1m15s
repod / nodejs (push) Successful in 1m52s
Back ready !
2023-08-22 19:41:17 +02:00

29 lines
332 B
PHP

<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\SubscriptionChange;
class SubscriptionChange
{
public function __construct(
private string $url,
private bool $isSubscribed
) {
}
/**
* @return bool
*/
public function isSubscribed()
{
}
/**
* @return string
*/
public function getUrl()
{
}
}