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 / Controller / WootController.php
diff --git a/vendor/drush/drush/tests/resources/modules/d8/woot/src/Controller/WootController.php b/vendor/drush/drush/tests/resources/modules/d8/woot/src/Controller/WootController.php
deleted file mode 100644 (file)
index 63bb2b9..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-/**
- * @file
- * Contains Drupal\woot\Controller\WootController.
- */
-
-namespace Drupal\woot\Controller;
-
-use Drupal\Core\Controller\ControllerBase;
-
-/**
- * Class WootController.
- *
- * @package Drupal\woot\Controller
- */
-class WootController extends ControllerBase
-{
-  /**
-   * Woot.
-   *
-   * @return array
-   *   Return Hello string.
-   */
-    public function woot()
-    {
-        return [
-        '#type' => 'markup',
-        '#markup' => $this->t('Woot!')
-        ];
-    }
-}