Files
yii2/tests/framework/console/FakeHelpControllerWithoutOutput.php
2025-09-30 01:22:41 +03:00

21 lines
429 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 FakeHelpControllerWithoutOutput extends HelpController
{
public $outputString = '';
public function stdout($string)
{
return $this->outputString .= $string;
}
}