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