mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 22:30:27 +08:00
29 lines
679 B
PHP
29 lines
679 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 ?array $_actionIndexLastCallParams = null;
|
|
|
|
public function actionIndex($command = null): void
|
|
{
|
|
self::$_actionIndexLastCallParams = func_get_args();
|
|
}
|
|
|
|
public static function getActionIndexLastCallParams()
|
|
{
|
|
$params = self::$_actionIndexLastCallParams;
|
|
self::$_actionIndexLastCallParams = null;
|
|
|
|
return $params;
|
|
}
|
|
}
|