Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / Sql / Sql8.php
diff --git a/vendor/drush/drush/lib/Drush/Sql/Sql8.php b/vendor/drush/drush/lib/Drush/Sql/Sql8.php
deleted file mode 100644 (file)
index 1c5154b..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-namespace Drush\Sql;
-
-use Drupal\Core\Database\Database;
-
-class Sql8 extends Sql7 {
-  public function get_db_spec() {
-    $db_spec = NULL;
-    if (drush_bootstrap_max(DRUSH_BOOTSTRAP_DRUPAL_CONFIGURATION)) {
-      $database = drush_get_option('database', 'default');
-      $target = drush_get_option('target', 'default');
-      if ($info = Database::getConnectionInfo($database)) {
-        return $info[$target];
-      }
-    }
-    return $db_spec;
-  }
-
-  public function getAll() {
-    return Database::getAllConnectionInfo();
-  }
-}