
Cleaned up a lot of the code Added API documentation Fixed some unit tests Much cleaning left to be done
15 lines
315 B
PHP
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();
|
|
} |