
Cleaned up a lot of the code Added API documentation Fixed some unit tests Much cleaning left to be done
14 lines
290 B
PHP
14 lines
290 B
PHP
<?php
|
|
namespace Ratchet\Server\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() {
|
|
}
|
|
} |