EchoMigrateController.php 399 B

12345678910111213141516171819
  1. <?php
  2. namespace yiiunit\extensions\mongodb\console\controllers;
  3. use yii\mongodb\console\controllers\MigrateController;
  4. /**
  5. * MigrateController that writes output via echo instead of using output stream. Allows us to buffer it.
  6. */
  7. class EchoMigrateController extends MigrateController
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function stdout($string)
  13. {
  14. echo $string;
  15. }
  16. }