mxmbsocket/lib/Ratchet/Resource/Command/Action/Null.php
Chris Boden 5386b4c066 Folder restructure
Just reorganized the folders.  Namespacing broken, unit tests broken, nothing works.
2011-11-12 14:29:10 -05:00

12 lines
299 B
PHP

<?php
namespace Ratchet\Command\Action;
use Ratchet\Command\ActionTemplate;
use Ratchet\SocketObserver;
/**
* Null pattern - execution does nothing, something needs to be passed back though
*/
class Null extends ActionTemplate {
public function execute(SocketObserver $scope = null) {
}
}