mxmbsocket/lib/Ratchet/Command/Null.php
Chris Boden a6073a87eb Communication between versions
HyBi-10 and Hixie-76 can now talk to each other!
2011-11-01 15:19:03 -04:00

14 lines
300 B
PHP

<?php
namespace Ratchet\Command;
use Ratchet\SocketInterface;
/**
* Null pattern - execution does nothing, something needs to be passed back though
*/
class Null implements CommandInterface {
public function __construct(SocketInterface $socket) {
}
public function execute() {
}
}