Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / stecman / symfony-console-completion / tests / Stecman / Component / Symfony / Console / BashCompletion / Fixtures / TestSymfonyStyleCommand.php
diff --git a/vendor/stecman/symfony-console-completion/tests/Stecman/Component/Symfony/Console/BashCompletion/Fixtures/TestSymfonyStyleCommand.php b/vendor/stecman/symfony-console-completion/tests/Stecman/Component/Symfony/Console/BashCompletion/Fixtures/TestSymfonyStyleCommand.php
new file mode 100644 (file)
index 0000000..d24d49c
--- /dev/null
@@ -0,0 +1,27 @@
+<?php
+
+class TestSymfonyStyleCommand extends \Symfony\Component\Console\Command\Command
+{
+    protected function configure()
+    {
+        $this->setName('walk:north')
+            ->addOption(
+                'power',
+                'p'
+            )
+            ->addOption(
+                'deploy:jazz-hands',
+                'j'
+            )
+            ->addOption(
+                'style',
+                's',
+                \Symfony\Component\Console\Input\InputOption::VALUE_REQUIRED
+            )
+            ->addOption(
+                'target',
+                't',
+                \Symfony\Component\Console\Input\InputOption::VALUE_REQUIRED
+            );
+    }
+}