Version 1
[yaffs-website] / vendor / symfony / http-kernel / Tests / Fixtures / ExtensionPresentBundle / Command / BarCommand.php
diff --git a/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/Command/BarCommand.php b/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/Command/BarCommand.php
new file mode 100644 (file)
index 0000000..977976b
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+namespace Symfony\Component\HttpKernel\Tests\Fixtures\ExtensionPresentBundle\Command;
+
+use Symfony\Component\Console\Command\Command;
+
+/**
+ * This command has a required parameter on the constructor and will be ignored by the default Bundle implementation.
+ *
+ * @see Bundle::registerCommands()
+ */
+class BarCommand extends Command
+{
+    public function __construct($example, $name = 'bar')
+    {
+    }
+}