14 lines
257 B
PHP
14 lines
257 B
PHP
<?php
|
|
|
|
namespace NoccyLabs\Mercureact\Broker;
|
|
|
|
interface SubscriberInterface
|
|
{
|
|
public function deliver(Message $message): void;
|
|
|
|
public function isAuthorized(): bool;
|
|
|
|
public function getPayload(): ?array;
|
|
|
|
public function getId(): string;
|
|
} |