mercureact/src/Broker/SubscriberInterface.php

12 lines
219 B
PHP
Raw Normal View History

2024-03-10 23:06:00 +01:00
<?php
namespace NoccyLabs\Mercureact\Broker;
interface SubscriberInterface
{
public function deliver(Message $message): void;
2024-03-11 00:36:34 +01:00
public function isAuthorized(): bool;
2024-03-12 01:45:21 +01:00
public function getPayload(): ?array;
2024-03-10 23:06:00 +01:00
}