9 lines
172 B
PHP
9 lines
172 B
PHP
<?php
|
|
namespace Ratchet\Command;
|
|
use Ratchet\SocketCollection;
|
|
|
|
interface CommandInterface {
|
|
function __construct(SocketCollection $sockets);
|
|
|
|
function execute();
|
|
} |