mxmbsocket/lib/Ratchet/Command/Pong.php
Chris Boden a6073a87eb Communication between versions
HyBi-10 and Hixie-76 can now talk to each other!
2011-11-01 15:19:03 -04:00

14 lines
280 B
PHP

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