mxmbsocket/lib/Ratchet/Application/ProtocolInterface.php
Chris Boden 5386b4c066 Folder restructure
Just reorganized the folders.  Namespacing broken, unit tests broken, nothing works.
2011-11-12 14:29:10 -05:00

15 lines
335 B
PHP

<?php
namespace Ratchet\Protocol;
use Ratchet\SocketObserver;
interface ProtocolInterface extends SocketObserver {
/**
* @param Ratchet\SocketObserver Application to wrap in protocol
*/
function __construct(SocketObserver $application);
/**
* @return array
*/
static function getDefaultConfig();
}