Files
yii2/tests/framework/console/FakeHelpController.php
2023-10-23 11:26:59 -03:00

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;
}
}