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
No related branches found
No related tags found
No related merge requests found
...@@ -213,7 +213,9 @@ class Preferences { ...@@ -213,7 +213,9 @@ class Preferences {
* @return array Mapped values: userid => value * @return array Mapped values: userid => value
*/ */
public function getValueForUsers($app, $key, $users) { 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); $chunked_users = array_chunk($users, 50, true);
$placeholders_50 = implode(',', array_fill(0, 50, '?')); $placeholders_50 = implode(',', array_fill(0, 50, '?'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment