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

14 lines
283 B
PHP

<?php
namespace Ratchet\Command;
use Ratchet\SocketCollection;
/**
* @todo Move this command to the WebSocket protocol namespace
*/
class Pong implements CommandInterface {
public function __construct(SocketCollection $sockets) {
}
public function execute() {
}
}