X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole%2Fsrc%2FCommand%2FDatabase%2FQueryCommand.php;h=d5ee1139e16ed5070cc4a1a72b87bf1e8eb4e035;hp=6e412b7885ac845f4f660064fee0ca048e390d2e;hb=eba34333e3c89f208d2f72fa91351ad019a71583;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae diff --git a/vendor/drupal/console/src/Command/Database/QueryCommand.php b/vendor/drupal/console/src/Command/Database/QueryCommand.php index 6e412b788..d5ee1139e 100644 --- a/vendor/drupal/console/src/Command/Database/QueryCommand.php +++ b/vendor/drupal/console/src/Command/Database/QueryCommand.php @@ -46,13 +46,13 @@ class QueryCommand extends Command $this->trans('commands.database.query.arguments.database'), 'default' ) - ->addOption('quick', '', InputOption::VALUE_NONE, $this->trans('commands.database.query.options.quick')) - ->addOption('debug', '', InputOption::VALUE_NONE, $this->trans('commands.database.query.options.debug')) - ->addOption('html', '', InputOption::VALUE_NONE, $this->trans('commands.database.query.options.html')) - ->addOption('xml', '', InputOption::VALUE_NONE, $this->trans('commands.database.query.options.xml')) - ->addOption('raw', '', InputOption::VALUE_NONE, $this->trans('commands.database.query.options.raw')) - ->addOption('vertical', '', InputOption::VALUE_NONE, $this->trans('commands.database.query.options.vertical')) - ->addOption('batch', '', InputOption::VALUE_NONE, $this->trans('commands.database.query.options.batch')) + ->addOption('quick', null, InputOption::VALUE_NONE, $this->trans('commands.database.query.options.quick')) + ->addOption('debug', null, InputOption::VALUE_NONE, $this->trans('commands.database.query.options.debug')) + ->addOption('html', null, InputOption::VALUE_NONE, $this->trans('commands.database.query.options.html')) + ->addOption('xml', null, InputOption::VALUE_NONE, $this->trans('commands.database.query.options.xml')) + ->addOption('raw', null, InputOption::VALUE_NONE, $this->trans('commands.database.query.options.raw')) + ->addOption('vertical', null, InputOption::VALUE_NONE, $this->trans('commands.database.query.options.vertical')) + ->addOption('batch', null, InputOption::VALUE_NONE, $this->trans('commands.database.query.options.batch')) ->setHelp($this->trans('commands.database.query.help')); }