mxmbsocket/lib/Ratchet/Protocol/WebSocket/Command/Action/Pong.php
2011-11-06 18:24:50 -05: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() {
}
}