Move return to new line

This commit is contained in:
Joas Schilling 2014-05-21 13:10:23 +02:00
parent 457a4aa425
commit 4fbfe077fb
1 changed files with 3 additions and 1 deletions

View File

@ -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, '?'));