<?php
namespace NoccyLabs\Mercureact\Broker;
interface SubscriberInterface
{
public function deliver(Message $message): void;
public function isAuthorized(string $topics): bool;
}