14 lines
283 B
PHP
14 lines
283 B
PHP
<?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() {
|
|
}
|
|
} |