2018-11-21 22:47:46 +00:00
|
|
|
<?php
|
2018-12-04 21:22:33 +00:00
|
|
|
|
2018-11-27 15:11:12 +00:00
|
|
|
namespace BeyondCode\LaravelWebSockets\WebSockets\Messages;
|
2018-11-21 22:47:46 +00:00
|
|
|
|
2018-12-01 14:09:05 +00:00
|
|
|
interface PusherMessage
|
2018-11-21 22:47:46 +00:00
|
|
|
{
|
2020-08-18 17:21:22 +00:00
|
|
|
/**
|
|
|
|
|
* Respond to the message construction.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2018-11-21 22:47:46 +00:00
|
|
|
public function respond();
|
2018-12-04 21:22:33 +00:00
|
|
|
}
|