Files
yii2/tests/framework/console/controllers/EchoMigrateController.php
2015-04-16 12:10:01 +03:00

18 lines
379 B
PHP

<?php
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)
{
echo $string;
}
}