diff options
Diffstat (limited to 'vendor/symfony/console/Tests/Fixtures/BarBucCommand.php')
-rw-r--r-- | vendor/symfony/console/Tests/Fixtures/BarBucCommand.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php b/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php new file mode 100644 index 00000000..52b619e8 --- /dev/null +++ b/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php @@ -0,0 +1,11 @@ +<?php + +use Symfony\Component\Console\Command\Command; + +class BarBucCommand extends Command +{ + protected function configure() + { + $this->setName('bar:buc'); + } +} |