Sha256: 293b7d8f2562a90b9bce25e5f36442cbf77474159e89b173bce7185a73838be3
Contents?: true
Size: 520 Bytes
Versions: 12
Compression:
Stored size: 520 Bytes
Contents
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class TestToto extends Command { protected function configure() { $this ->setName('test-toto') ->setDescription('The test-toto command') ->setAliases(['test']) ; } protected function execute(InputInterface $input, OutputInterface $output) { $output->write('test-toto'); } }
Version data entries
12 entries across 12 versions & 1 rubygems