Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / tests / resources / global-includes / Generators / FooGenerator.php
diff --git a/vendor/drush/drush/tests/resources/global-includes/Generators/FooGenerator.php b/vendor/drush/drush/tests/resources/global-includes/Generators/FooGenerator.php
deleted file mode 100644 (file)
index 8eadf0f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-namespace Drush\Generators;
-
-use DrupalCodeGenerator\Command\BaseGenerator;
-use Symfony\Component\Console\Input\InputInterface;
-use Symfony\Component\Console\Output\OutputInterface;
-
-class FooGenerator extends BaseGenerator
-{
-    protected $name = 'foo-example';
-    protected $description = 'Generates a foo.';
-    protected $alias = 'foo';
-    protected $templatePath = __DIR__;
-
-    /**
-     * {@inheritDoc}
-     */
-    protected function interact(InputInterface $input, OutputInterface $output)
-    {
-        $this->addFile()
-            ->path('foo.php')
-            ->template('foo.twig');
-    }
-}