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