Files
yii2/tests/framework/console/FakeHelpController.php
2022-08-03 12:32:18 +03:00

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