Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / Command / DrushOutputAdapter.php
diff --git a/vendor/drush/drush/lib/Drush/Command/DrushOutputAdapter.php b/vendor/drush/drush/lib/Drush/Command/DrushOutputAdapter.php
deleted file mode 100644 (file)
index 5d2101b..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-/**
- * @file
- * Definition of Drush\Command\DrushOutputAdapter.
- */
-
-namespace Drush\Command;
-
-use Symfony\Component\Console\Output\Output;
-
-/**
- * Adapter for Symfony Console OutputInterface
- *
- * This class can serve as a stand-in wherever an OutputInterface
- * is needed.  It calls through to drush_print().
- * This object should not be used directly; it exists only in
- * the Drush 8.x branch.
- */
-class DrushOutputAdapter extends Output {
-    protected function doWrite($message, $newline)
-    {
-        drush_print($message, 0, null, $newline);
-    }
-}