mxmbsocket/lib/Ratchet/Application/ProtocolInterface.php
Chris Boden 47b7110dc1 Namespaces
Fixed all the namespaces to match new folder structure
2011-11-12 20:51:54 -05:00

15 lines
352 B
PHP

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