tikiwiki/packages/tiki-pkg-tikimanager/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering.php

25 lines
582 B
PHP
Raw Normal View History

2023-11-20 21:52:04 +01:00
<?php
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class TestAmbiguousCommandRegistering extends Command
{
protected function configure()
{
$this
->setName('test-ambiguous')
->setDescription('The test-ambiguous command')
->setAliases(['test'])
;
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->write('test-ambiguous');
return 0;
}
}