Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / tests / resources / modules / d8 / woot / src / DependingService.php
diff --git a/vendor/drush/drush/tests/resources/modules/d8/woot/src/DependingService.php b/vendor/drush/drush/tests/resources/modules/d8/woot/src/DependingService.php
deleted file mode 100644 (file)
index 01a1bed..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-namespace Drupal\woot;
-
-use Drupal\devel\DevelDumperManagerInterface;
-
-/**
- * Test service that depends on another service.
- *
- * This is used to test whether it is possible to perform database updates if a
- * new service is introduced in an existing module that depends on another
- * service that is part of a new module that is being added in the update.
- *
- * Note that the service definition is missing from `woot.services.yml`. This is
- * intentional, it is added as part of the update test.
- *
- * @see \Unish\UpdateDBTest::testUpdateModuleWithServiceDependency()
- *
- * @see https://www.drupal.org/project/drupal/issues/2863986
- * @see https://github.com/drush-ops/drush/issues/3193
- */
-class DependingService
-{
-
-    /**
-     * @var \Drupal\devel\DevelDumperManagerInterface
-     */
-    protected $develDumperManager;
-
-    public function __construct(DevelDumperManagerInterface $develDumperManager)
-    {
-        $this->develDumperManager = $develDumperManager;
-    }
-}