From d5dcb60e5d796852cf62183c388605793bb89c09 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 16 Jul 2015 17:51:33 +0200 Subject: Use json_pretty as default for the config lists (for easier export/import) --- core/command/base.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'core/command/base.php') diff --git a/core/command/base.php b/core/command/base.php index 7e61c0cb9ab..7936e683dcc 100644 --- a/core/command/base.php +++ b/core/command/base.php @@ -27,6 +27,8 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; class Base extends Command { + protected $defaultOutputFormat = 'plain'; + protected function configure() { $this ->addOption( @@ -34,7 +36,7 @@ class Base extends Command { null, InputOption::VALUE_OPTIONAL, 'Output format (plain, json or json_pretty, default is plain)', - 'plain' + $this->defaultOutputFormat ) ; } -- cgit v1.2.3