rfc6455/WsServerInterface.php
Chris Boden 2b9e4a4aee CS
2012-06-15 09:56:16 -04:00

11 lines
364 B
PHP

<?php
namespace Ratchet\WebSocket;
interface WsServerInterface {
/**
* If any component in a stack supports a WebSocket sub-protocol return each supported in an array
* @return array
* @temporary This method may be removed in future version (note that will not break code, just make some code obsolete)
*/
function getSubProtocols();
}