url = $url; $this->isSubscribed = $isSubscribed; } /** * @return bool */ public function isSubscribed(): bool { return $this->isSubscribed; } /** * @return string */ public function getUrl(): string { return $this->url; } public function __toString() : String { return $this->url; } }