@@ -249,7 +249,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |