gmarche/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegiste...

22 lines
527 B
PHP

<?php
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class TestAmbiguousCommandRegistering2 extends Command
{
protected function configure()
{
$this
->setName('test-ambiguous2')
->setDescription('The test-ambiguous2 command')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$output->write('test-ambiguous2');
}
}