Move return to new line
This commit is contained in:
parent
457a4aa425
commit
4fbfe077fb
|
@ -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, '?'));
|
||||
|
|
Loading…
Reference in New Issue