mxmbsocket/lib/Ratchet/Protocol/ProtocolInterface.php
Chris Boden f9d609074c Moar cleaning
Added a few unit tests
Added MIT license
Changed Array's to array's
2011-11-01 11:01:43 -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();
}