From 4fbfe077fb611bea2581556c52c068a3163c73b3 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 21 May 2014 13:10:23 +0200 Subject: [PATCH] Move return to new line --- lib/private/preferences.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/private/preferences.php b/lib/private/preferences.php index c0000804aa5..62ef9086551 100644 --- a/lib/private/preferences.php +++ b/lib/private/preferences.php @@ -213,7 +213,9 @@ class Preferences { * @return array Mapped values: userid => value */ public function getValueForUsers($app, $key, $users) { - if (empty($users) || !is_array($users)) return array(); + if (empty($users) || !is_array($users)) { + return array(); + } $chunked_users = array_chunk($users, 50, true); $placeholders_50 = implode(',', array_fill(0, 50, '?')); -- 2.39.5