10 lines
196 B
PHP
10 lines
196 B
PHP
<?php
|
|
namespace Ratchet\Protocol;
|
|
use Ratchet\ServerInterface;
|
|
|
|
interface ProtocolInterface extends ServerInterface {
|
|
/**
|
|
* @return Array
|
|
*/
|
|
static function getDefaultConfig();
|
|
} |