Sha256: bba361638d9df85db81d09f9f022aa6e5aca8a54377b8b64c109d0289bacc177
Contents?: true
Size: 527 Bytes
Versions: 6
Compression:
Stored size: 527 Bytes
Contents
<?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'); } }
Version data entries
6 entries across 6 versions & 1 rubygems