/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
symfony
/
console
/
Tests
/
Fixtures
/
Upload File
HOME
<?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(): void { $this ->setName('test-ambiguous2') ->setDescription('The test-ambiguous2 command') ; } protected function execute(InputInterface $input, OutputInterface $output): int { $output->write('test-ambiguous2'); return 0; } }