mxmbsocket/lib/Ratchet/Command/CommandInterface.php
Chris Boden 51d0516aa3 Cleanup
Application stack working!
Existing unit tests fixed
Implemented HyBi-10 unframing
2011-10-28 14:12:39 -04:00

9 lines
172 B
PHP

<?php
namespace Ratchet\Command;
use Ratchet\SocketCollection;
interface CommandInterface {
function __construct(SocketCollection $sockets);
function execute();
}