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

11 lines
212 B
PHP

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