mxmbsocket/lib/Ratchet/Resource/Command/Action/Null.php
Chris Boden 47b7110dc1 Namespaces
Fixed all the namespaces to match new folder structure
2011-11-12 20:51:54 -05:00

12 lines
323 B
PHP

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