mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-10-31 18:47:33 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			454 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			454 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @link https://www.yiiframework.com/
 | |
|  * @copyright Copyright (c) 2008 Yii Software LLC
 | |
|  * @license https://www.yiiframework.com/license/
 | |
|  */
 | |
| 
 | |
| namespace yiiunit\framework\console;
 | |
| 
 | |
| use yii\console\controllers\HelpController;
 | |
| use yii\helpers\Console;
 | |
| 
 | |
| class FakeHelpControllerWithoutOutput extends HelpController
 | |
| {
 | |
|     public $outputString = '';
 | |
| 
 | |
|     public function stdout($string)
 | |
|     {
 | |
|         return $this->outputString .= $string;
 | |
|     }
 | |
| }
 | 
