mxmbsocket/lib/Ratchet/Server/Command/Ping.php
Chris Boden 7514ce8e85 Cleaning Up
Cleaned up a lot of the code
Added API documentation
Fixed some unit tests
Much cleaning left to be done
2011-10-27 19:17:38 -04:00

14 lines
290 B
PHP

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