mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-10-31 10:39:59 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			659 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			659 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;
 | |
| 
 | |
| class FakeHelpController extends HelpController
 | |
| {
 | |
|     private static $_actionIndexLastCallParams;
 | |
| 
 | |
|     public function actionIndex($command = null)
 | |
|     {
 | |
|         self::$_actionIndexLastCallParams = func_get_args();
 | |
|     }
 | |
| 
 | |
|     public static function getActionIndexLastCallParams()
 | |
|     {
 | |
|         $params = self::$_actionIndexLastCallParams;
 | |
|         self::$_actionIndexLastCallParams = null;
 | |
| 
 | |
|         return $params;
 | |
|     }
 | |
| }
 | 
