
Fixed bad interface implementation in Close Command Removed old code from Composite (now in Factory) Removed done @todo's Cleaned up Ping/Pong Added HyBi-10 frame/unframe test
12 lines
247 B
PHP
12 lines
247 B
PHP
<?php
|
|
namespace Ratchet\Command;
|
|
use Ratchet\SocketInterface;
|
|
use Ratchet\Command\CommandInterface;
|
|
|
|
class Ping implements CommandInterface {
|
|
public function __construct(SocketInterface $socket) {
|
|
}
|
|
|
|
public function execute() {
|
|
}
|
|
} |