Sha256: 6398a45c60ae0a15bbd940129f15e85c0f1bbc2d933e1318e1d37b5cac8b2596
Contents?: true
Size: 592 Bytes
Versions: 18
Compression:
Stored size: 592 Bytes
Contents
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class Foo1Command extends Command { public $input; public $output; protected function configure() { $this ->setName('foo:bar1') ->setDescription('The foo:bar1 command') ->setAliases(['afoobar1']) ; } protected function execute(InputInterface $input, OutputInterface $output) { $this->input = $input; $this->output = $output; } }
Version data entries
18 entries across 18 versions & 1 rubygems