Passed
Push — master ( 9d5362...1a3daa )
by Blizzz
13:57 queued 13s
created
apps/user_ldap/lib/Jobs/UpdateGroups.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 		');
209 209
 		foreach ($createdGroups as $createdGroup) {
210 210
 			\OCP\Util::writeLog('user_ldap',
211
-				'bgJ "updateGroups" – new group "' . $createdGroup . '" found.',
211
+				'bgJ "updateGroups" – new group "'.$createdGroup.'" found.',
212 212
 				ILogger::INFO);
213 213
 			$users = serialize($this->groupBackend->usersInGroup($createdGroup));
214 214
 			$query->execute([$createdGroup, $users]);
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 		');
231 231
 		foreach ($removedGroups as $removedGroup) {
232 232
 			\OCP\Util::writeLog('user_ldap',
233
-				'bgJ "updateGroups" – group "' . $removedGroup . '" was removed.',
233
+				'bgJ "updateGroups" – group "'.$removedGroup.'" was removed.',
234 234
 				ILogger::INFO);
235 235
 			$query->execute([$removedGroup]);
236 236
 		}
Please login to merge, or discard this patch.