Skip to content
Snippets Groups Projects
Commit 4fbfe077 authored by Joas Schilling's avatar Joas Schilling
Browse files

Move return to new line

parent 457a4aa4
Branches
No related tags found
No related merge requests found
......@@ -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, '?'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment