diff options
Diffstat (limited to 'vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/Command/BarCommand.php')
| -rw-r--r-- | vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/Command/BarCommand.php | 17 |
1 files changed, 17 insertions, 0 deletions
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 index 0000000000..977976b75f --- /dev/null +++ b/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/Command/BarCommand.php @@ -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') + { + } +} |
