Files
yii2/tests/framework/console/controllers/EchoMigrateController.php
Klimov Paul 71c541773f PHPDoc fix
2018-01-23 13:17:25 +02:00

25 lines
528 B
PHP

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://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)
{
echo $string;
}
}