12345678910111213141516171819 |
- <?php
- namespace yiiunit\extensions\mongodb\console\controllers;
- use yii\mongodb\console\controllers\MigrateController;
- class EchoMigrateController extends MigrateController
- {
-
- public function stdout($string)
- {
- echo $string;
- }
- }
|