Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / Command / ServiceCommandlist.php
diff --git a/vendor/drush/drush/lib/Drush/Command/ServiceCommandlist.php b/vendor/drush/drush/lib/Drush/Command/ServiceCommandlist.php
deleted file mode 100644 (file)
index b0bcfc3..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-namespace Drush\Command;
-
-use Drush\Log\LogLevel;
-
-/**
- * Keep a list of all of the service commands that we can find when the
- * Drupal Kernel is booted.
- */
-class ServiceCommandlist {
-    protected $commandList = [];
-
-    public function addCommandReference($command)
-    {
-        drush_log(dt("add command reference"), LogLevel::DEBUG);
-        $this->commandList[] = $command;
-    }
-
-    public function getCommandList()
-    {
-        return $this->commandList;
-    }
-}