diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-07-17 09:25:19 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-07-17 09:25:19 +0200 |
commit | 0a36331cb614770b5d004ca193126fce650bcd55 (patch) | |
tree | 5db94c82f5fdb160f0789c6d2bba77df91ec332c /core/command/config | |
parent | 01dc3935d03cb08703b47bfeef50dcbb7f5458e7 (diff) | |
download | nextcloud-server-0a36331cb614770b5d004ca193126fce650bcd55.tar.gz nextcloud-server-0a36331cb614770b5d004ca193126fce650bcd55.zip |
Use constants for the output formats
Diffstat (limited to 'core/command/config')
-rw-r--r-- | core/command/config/listconfigs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/config/listconfigs.php b/core/command/config/listconfigs.php index d80bd2b98ca..fed6a8e9db6 100644 --- a/core/command/config/listconfigs.php +++ b/core/command/config/listconfigs.php @@ -30,7 +30,7 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; class ListConfigs extends Base { - protected $defaultOutputFormat = 'json_pretty'; + protected $defaultOutputFormat = self::OUTPUT_FORMAT_JSON_PRETTY; /** @var array */ protected $sensitiveValues = [ |