Some checks are pending
CI / PHPUnit (highest, 5.4) (push) Waiting to run
CI / PHPUnit (highest, 5.5) (push) Waiting to run
CI / PHPUnit (highest, 5.6) (push) Waiting to run
CI / PHPUnit (highest, 7.0) (push) Waiting to run
CI / PHPUnit (highest, 7.1) (push) Waiting to run
CI / PHPUnit (highest, 7.2) (push) Waiting to run
CI / PHPUnit (highest, 7.3) (push) Waiting to run
CI / PHPUnit (highest, 7.4) (push) Waiting to run
CI / PHPUnit (lowest, 5.4) (push) Waiting to run
13 lines
402 B
PHP
13 lines
402 B
PHP
<?php
|
|
namespace Ratchet;
|
|
|
|
interface MessageInterface {
|
|
/**
|
|
* Triggered when a client sends data through the socket
|
|
* @param \Ratchet\ConnectionInterface $from The socket/connection that sent the message to your application
|
|
* @param string $msg The message received
|
|
* @throws \Exception
|
|
*/
|
|
function onMessage(ConnectionInterface $from, $msg);
|
|
}
|