Passed
Push — master ( 04a456...6c0186 )
by Robin
15:03 queued 11s
created
lib/private/Log.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 		try {
313 313
 			$serializer = new ExceptionSerializer($this->config);
314 314
 		} catch (\Throwable $e) {
315
-			$this->error("Failed to load ExceptionSerializer serializer while trying to log " . $exception->getMessage());
315
+			$this->error("Failed to load ExceptionSerializer serializer while trying to log ".$exception->getMessage());
316 316
 			return;
317 317
 		}
318 318
 		$data = $serializer->serializeException($exception);
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
 	private function interpolateMessage(array $context, string $message): string {
390 390
 		$replace = [];
391 391
 		foreach ($context as $key => $val) {
392
-			$replace['{' . $key . '}'] = $val;
392
+			$replace['{'.$key.'}'] = $val;
393 393
 		}
394 394
 		return strtr($message, $replace);
395 395
 	}
Please login to merge, or discard this patch.