<?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() { } }