
A new interface the dev can implement that will pass a Message object to the devs instance. The object has properties regarding binary/text
7 lines
161 B
PHP
7 lines
161 B
PHP
<?php
|
|
namespace Ratchet\WebSocket;
|
|
use Ratchet\ComponentInterface;
|
|
|
|
interface MessageComponentInterface extends ComponentInterface, MessageCallableInterface {
|
|
}
|