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 / HiddenCommand.php
diff --git a/vendor/stecman/symfony-console-completion/tests/Stecman/Component/Symfony/Console/BashCompletion/Fixtures/HiddenCommand.php b/vendor/stecman/symfony-console-completion/tests/Stecman/Component/Symfony/Console/BashCompletion/Fixtures/HiddenCommand.php
new file mode 100644 (file)
index 0000000..6b3e22a
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+
+
+class HiddenCommand extends \Symfony\Component\Console\Command\Command
+{
+    protected function configure()
+    {
+        $this->setName('internals')
+            ->setHidden(true);
+    }
+}
\ No newline at end of file