mxmbsocket/src/Ratchet/Resource/Command/Action/Null.php
Chris Boden ad9b8c1644 psr convention
Renamed lib to src
2012-01-30 17:11:30 -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) {
}
}