mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 14:28:27 +08:00
25 lines
536 B
PHP
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;
|
|
}
|
|
}
|