mxmbsocket/lib/Ratchet/Protocol/ProtocolInterface.php
Chris Boden 7514ce8e85 Cleaning Up
Cleaned up a lot of the code
Added API documentation
Fixed some unit tests
Much cleaning left to be done
2011-10-27 19:17:38 -04:00

15 lines
315 B
PHP

<?php
namespace Ratchet\Protocol;
use Ratchet\ReceiverInterface;
interface ProtocolInterface extends ReceiverInterface {
/**
* @param Ratchet\ReceiverInterface
*/
function __construct(ReceiverInterface $application);
/**
* @return Array
*/
static function getDefaultConfig();
}