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
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
<?php
|
|
namespace mfmdevsystem\socket;
|
|
use mfmdevsystem\socket\ConnectionInterface;
|
|
use mfmdevsystem\socket\MessageComponentInterface;
|
|
use mfmdevsystem\socket\WebSocket\WsServerInterface;
|
|
use mfmdevsystem\socket\Wamp\WampServerInterface;
|
|
|
|
class NullComponent implements MessageComponentInterface, WsServerInterface, WampServerInterface {
|
|
public function onOpen(ConnectionInterface $conn) {}
|
|
|
|
public function onMessage(ConnectionInterface $conn, $msg) {}
|
|
|
|
public function onClose(ConnectionInterface $conn) {}
|
|
|
|
public function onError(ConnectionInterface $conn, \Exception $e) {}
|
|
|
|
public function onCall(ConnectionInterface $conn, $id, $topic, array $params) {}
|
|
|
|
public function onSubscribe(ConnectionInterface $conn, $topic) {}
|
|
|
|
public function onUnSubscribe(ConnectionInterface $conn, $topic) {}
|
|
|
|
public function onPublish(ConnectionInterface $conn, $topic, $event, array $exclude = array(), array $eligible = array()) {}
|
|
|
|
public function getSubProtocols() {
|
|
return array();
|
|
}
|
|
}
|