12 lines
		
	
	
		
			341 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			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) {
 | |
|     }
 | |
| } | 
