Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / config / tests / src / MyFooCommand.php
diff --git a/vendor/consolidation/config/tests/src/MyFooCommand.php b/vendor/consolidation/config/tests/src/MyFooCommand.php
deleted file mode 100644 (file)
index 0487a02..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-namespace Consolidation\TestUtils;
-
-use Symfony\Component\Console\Command\Command;
-use Symfony\Component\Console\Input\InputInterface;
-use Symfony\Component\Console\Output\OutputInterface;
-use Symfony\Component\Console\Input\InputOption;
-
-class MyFooCommand extends Command
-{
-    protected function configure()
-    {
-        $this
-            ->setName('my:foo')
-            ->setDescription('My foo command.')
-            ->setHelp('This command tests command option injection by echoing its options')
-            ->addOption(
-                'other',
-                null,
-                InputOption::VALUE_REQUIRED,
-                'Some other option',
-                'fish'
-            )
-            ->addOption(
-                'name',
-                null,
-                InputOption::VALUE_REQUIRED,
-                'What is the name of the thing we are naming',
-                'George'
-            )
-            ->addOption(
-                'dir',
-                null,
-                InputOption::VALUE_REQUIRED,
-                'What is the base directory to use for this command',
-                '/default/path'
-            );
-    }
-
-    protected function execute(InputInterface $input, OutputInterface $output)
-    {
-        $output->writeln('Enter my:foo');
-        $output->writeln('dir: ' . $input->getOption('dir'));
-        $output->writeln('name: ' . $input->getOption('name'));
-        $output->writeln('other: ' . $input->getOption('other'));
-    }
-}