mxmbsocket/lib/Ratchet/Protocol/WebSocket/AppInterface.php
Chris Boden 3127efc981 Cleanup
Removed redundant Interfaces
Removed a number of unused methods
2011-11-01 09:52:41 -04:00

14 lines
370 B
PHP

<?php
namespace Ratchet\Protocol\WebSocket;
use Ratchet\SocketObserver;
/**
* @todo App interfaces this (optionally) if is meant for WebSocket
* @todo WebSocket checks if instanceof AppInterface, if so uses getSubProtocol() when doing handshake
*/
interface AppInterface extends SocketObserver {
/**
* @return string
*/
function getSubProtocol();
}