D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api
/
vendor
/
symfony
/
console
/
Tests
/
Fixtures
/
Filename :
TestAmbiguousCommandRegistering2.php
back
Copy
<?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'); } }