aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Status.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Command/Status.php')
-rw-r--r--core/Command/Status.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Status.php b/core/Command/Status.php
index 8f615004f3c..25632a313f3 100644
--- a/core/Command/Status.php
+++ b/core/Command/Status.php
@@ -38,12 +38,12 @@ class Status extends Base {
}
protected function execute(InputInterface $input, OutputInterface $output) {
- $values = array(
+ $values = [
'installed' => (bool) \OC::$server->getConfig()->getSystemValue('installed', false),
'version' => implode('.', \OCP\Util::getVersion()),
'versionstring' => \OC_Util::getVersionString(),
'edition' => '',
- );
+ ];
$this->writeArrayInOutputFormat($input, $output, $values);
}