laravel-websockets/src/WebSockets/Messages/PusherMessage.php

14 lines
214 B
PHP

<?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Messages;
interface PusherMessage
{
/**
* Respond to the message construction.
*
* @return void
*/
public function respond();
}