mxmbsocket/lib/Ratchet/Command/Null.php
2011-10-28 15:15:23 -04:00

14 lines
303 B
PHP

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