aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Encryption/File.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Encryption/File.php')
-rw-r--r--lib/private/Encryption/File.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Encryption/File.php b/lib/private/Encryption/File.php
index 1c71ec7dd95..0fc9dcc6866 100644
--- a/lib/private/Encryption/File.php
+++ b/lib/private/Encryption/File.php
@@ -71,10 +71,10 @@ class File implements \OCP\Encryption\IFile {
list($owner, $ownerPath) = $this->util->getUidAndFilename($path);
// always add owner to the list of users with access to the file
- $userIds = array($owner);
+ $userIds = [$owner];
if (!$this->util->isFile($owner . '/' . $ownerPath)) {
- return array('users' => $userIds, 'public' => false);
+ return ['users' => $userIds, 'public' => false];
}
$ownerPath = substr($ownerPath, strlen('/files'));
@@ -121,7 +121,7 @@ class File implements \OCP\Encryption\IFile {
// Remove duplicate UIDs
$uniqueUserIds = array_unique($userIds);
- return array('users' => $uniqueUserIds, 'public' => $public);
+ return ['users' => $uniqueUserIds, 'public' => $public];
}
}