Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/App/DependencyAnalyzer.php')
-rw-r--r--lib/private/App/DependencyAnalyzer.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/App/DependencyAnalyzer.php b/lib/private/App/DependencyAnalyzer.php
index a59e8c21735..81ae6e7a168 100644
--- a/lib/private/App/DependencyAnalyzer.php
+++ b/lib/private/App/DependencyAnalyzer.php
@@ -188,7 +188,7 @@ class DependencyAnalyzer {
return $missing;
}
if (!is_array($supportedDatabases)) {
- $supportedDatabases = array($supportedDatabases);
+ $supportedDatabases = [$supportedDatabases];
}
$supportedDatabases = array_map(function ($db) {
return $this->getValue($db);
@@ -212,7 +212,7 @@ class DependencyAnalyzer {
$commands = $dependencies['command'];
if (!is_array($commands)) {
- $commands = array($commands);
+ $commands = [$commands];
}
if (isset($commands['@value'])) {
$commands = [$commands];
@@ -242,7 +242,7 @@ class DependencyAnalyzer {
$libs = $dependencies['lib'];
if (!is_array($libs)) {
- $libs = array($libs);
+ $libs = [$libs];
}
if (isset($libs['@value'])) {
$libs = [$libs];
@@ -294,7 +294,7 @@ class DependencyAnalyzer {
return $this->getValue($os);
}, $oss);
} else {
- $oss = array($oss);
+ $oss = [$oss];
}
$currentOS = $this->platform->getOS();
if (!in_array($currentOS, $oss)) {