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

29 lines
332 B
PHP
Raw Normal View History

2023-08-02 10:13:16 +00:00
<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Core\SubscriptionChange;
2023-08-03 22:23:59 +00:00
class SubscriptionChange
2023-08-02 10:13:16 +00:00
{
2023-08-22 17:41:17 +00:00
public function __construct(
private string $url,
private bool $isSubscribed
) {
}
2023-08-03 22:23:59 +00:00
/**
* @return bool
*/
public function isSubscribed()
{
}
2023-08-02 10:13:16 +00:00
2023-08-03 22:23:59 +00:00
/**
* @return string
*/
public function getUrl()
{
}
2023-08-02 10:13:16 +00:00
}