mxmbsocket/lib/Ratchet/Protocol/ProtocolInterface.php
Chris Boden 3127efc981 Cleanup
Removed redundant Interfaces
Removed a number of unused methods
2011-11-01 09:52:41 -04: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();
}