Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / Queue / Queue6.php
diff --git a/vendor/drush/drush/lib/Drush/Queue/Queue6.php b/vendor/drush/drush/lib/Drush/Queue/Queue6.php
deleted file mode 100644 (file)
index 2b3a552..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-namespace Drush\Queue;
-
-class Queue6 extends Queue7 {
-
-  public function __construct() {
-    // Drupal 6 has no core queue capabilities, and thus requires contrib.
-    if (!module_exists('drupal_queue')) {
-      throw new QueueException(dt('The drupal_queue module need to be installed/enabled.'));
-    }
-    else {
-      drupal_queue_include();
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getQueues() {
-    if (!isset(static::$queues)) {
-      static::$queues = module_invoke_all('cron_queue_info');
-      drupal_alter('cron_queue_info', static::$queues);
-    }
-    return static::$queues;
-  }
-
-}