Yaffs site version 1.1
[yaffs-website] / vendor / symfony / console / Tests / Fixtures / BarBucCommand.php
diff --git a/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php b/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php
new file mode 100644 (file)
index 0000000..52b619e
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+
+use Symfony\Component\Console\Command\Command;
+
+class BarBucCommand extends Command
+{
+    protected function configure()
+    {
+        $this->setName('bar:buc');
+    }
+}