1: <?php
2:
3: namespace Peg\Cli\Commands;
4:
5: use Peg\Cli\Commands\Command;
6: use Symfony\Component\Console\Input\InputArgument;
7: use Symfony\Component\Console\Input\InputInterface;
8: use Symfony\Component\Console\Input\InputOption;
9: use Symfony\Component\Console\Output\OutputInterface;
10:
11: class Generate extends Command
12: {
13: protected function configure()
14: {
15: $this->setName('generate');
16: $this->setDescription('generate');
17:
18: parent::configure();
19: ;
20: }
21:
22: protected function execute(InputInterface $input, OutputInterface $output)
23: {
24: $output->writeln("Someday, when I grow up, I'm gonna generate stuff!");
25: }
26: }
27: