Sha256: 0918fa18347fb2ecf2613cf5fe46a81a2ef2fd27494a1085bfa6e201c20acfb3
Contents?: true
Size: 493 Bytes
Versions: 24
Compression:
Stored size: 493 Bytes
Contents
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class Foo2Command extends Command { protected function configure() { $this ->setName('foo1:bar') ->setDescription('The foo1:bar command') ->setAliases(array('afoobar2')) ; } protected function execute(InputInterface $input, OutputInterface $output) { } }
Version data entries
24 entries across 24 versions & 1 rubygems