]> source.dussan.org Git - nextcloud-server.git/commitdiff
Move return to new line
authorJoas Schilling <nickvergessen@gmx.de>
Wed, 21 May 2014 11:10:23 +0000 (13:10 +0200)
committerJoas Schilling <nickvergessen@gmx.de>
Wed, 21 May 2014 11:10:23 +0000 (13:10 +0200)
lib/private/preferences.php

index c0000804aa59eb4742ca074b07b33cd3b0045552..62ef908655196565334182012896870eaab69281 100644 (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, '?'));