Completed
Push — master ( d5ab1b...abc532 )
by Maxence
02:50 queued 11s
created
lib/Service/ConfigService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
 		if ((!$this->isNonSSLLinksAllowed() || strpos($remote, 'http://') !== 0)
250 250
 			&& strpos($remote, 'https://') !== 0
251 251
 		) {
252
-			$remote = 'https://' . $remote;
252
+			$remote = 'https://'.$remote;
253 253
 		}
254 254
 
255 255
 		return rtrim($remote, '/');
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
 				return false;
508 508
 			}
509 509
 
510
-			throw new GSStatusException('GS and lookup are not configured : ' . $lookup . ', ' . $enabled);
510
+			throw new GSStatusException('GS and lookup are not configured : '.$lookup.', '.$enabled);
511 511
 		}
512 512
 
513 513
 		$clef = $this->config->getSystemValue('gss.jwt.key', '');
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
 			}
572 572
 
573 573
 			if (array_key_exists('port', $local)) {
574
-				return $local['host'] . ':' . $local['port'];
574
+				return $local['host'].':'.$local['port'];
575 575
 			} else {
576 576
 				return $local['host'];
577 577
 			}
@@ -681,7 +681,7 @@  discard block
 block discarded – undo
681 681
 			$ncBase = substr($ncBase, 0, -strlen($forcedPath));
682 682
 		}
683 683
 
684
-		return rtrim($ncBase, '/') . $link;
684
+		return rtrim($ncBase, '/').$link;
685 685
 	}
686 686
 
687 687
 }
Please login to merge, or discard this patch.