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

25 lines
536 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\controllers;
use yii\console\controllers\MigrateController;
/**
* MigrateController that writes output via echo instead of using output stream. Allows us to buffer it.
*/
class EchoMigrateController extends MigrateController
{
/**
* {@inheritdoc}
*/
public function stdout($string): void
{
echo $string;
}
}