1
0
Fork 0

added notify method, that gets called when a transport should to send a notification a subscriber

This commit is contained in:
Jonathan Treffler 2024-06-12 02:59:09 +02:00
parent 5f65485798
commit e42b7b34ad

View file

@ -38,4 +38,6 @@ abstract class Transport {
} }
abstract public function registerSubscription($options); abstract public function registerSubscription($options);
abstract public function notify(string $userId, string $collectionName, $data);
} }