mxmbsocket/lib/Ratchet/Command/Action/Null.php
2011-11-06 18:24:50 -05:00

15 lines
345 B
PHP

<?php
namespace Ratchet\Command\Action;
use Ratchet\Command\CommandInterface;
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() {
}
}