Removing auto-generated comments

This commit is contained in:
Simon Vieille 2015-02-18 13:54:54 +01:00
parent a7d5a7ef58
commit 1aa7940054

View file

@ -5,7 +5,6 @@ namespace Deblan\PowerDNS\Command;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;
use Deblan\PowerDNS\Model\ZoneQuery; use Deblan\PowerDNS\Model\ZoneQuery;
@ -13,12 +12,11 @@ class ZoneListCommand extends AbstractZoneCommand
{ {
protected function configure() protected function configure()
{ {
parent::configure(); parent::configure();
$this $this
->setName('zone:list') ->setName('zone:list')
->setDescription('List DNS zones') ->setDescription('List DNS zones')
// ->addArgument('foo', InputArgument::OPTIONAL, '')
->addOption('name', null, InputOption::VALUE_REQUIRED, '') ->addOption('name', null, InputOption::VALUE_REQUIRED, '')
->setHelp("The <info>%command.name%</info> "); ->setHelp("The <info>%command.name%</info> ");
} }
@ -27,12 +25,7 @@ class ZoneListCommand extends AbstractZoneCommand
{ {
parent::execute($input, $output); parent::execute($input, $output);
// $this->getContainer()->get('foo.bar'); $query = $this->getZoneQuery();
// $output->writeln(sprintf('<comment>%s</comment> bar.', $example));
// $input->getArgument('foo');
// $input->getOption('bar');
$query = $this->getZoneQuery();
$zones = $query->find(); $zones = $query->find();