mxmbsocket/lib/Ratchet/Resource/Command/Action/Null.php
Chris Boden 3363c08f36 Cleanup
Removed reference to remaining ObservableInterface's and SocketInterface's
2011-11-14 16:51:16 -05:00

12 lines
341 B
PHP

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