7 lines
128 B
PHP
7 lines
128 B
PHP
<?php
|
|
namespace Ratchet\Protocol;
|
|
use Ratchet\Server;
|
|
|
|
interface ProtocolInterface {
|
|
function __construct(Server $server);
|
|
} |