Completed
Pull Request — master (#734)
by Maxence
44s
created
lib/Service/InterfaceService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -401,13 +401,13 @@  discard block
 block discarded – undo
401 401
 			throw new UnknownInterfaceException('misconfigured scheme');
402 402
 		}
403 403
 
404
-		$base = $scheme . '://' . $this->getCloudInstance();
404
+		$base = $scheme.'://'.$this->getCloudInstance();
405 405
 
406 406
 		if ($route === '') {
407 407
 			return $base;
408 408
 		}
409 409
 
410
-		return $base . $this->urlGenerator->linkToRoute($route, $args);
410
+		return $base.$this->urlGenerator->linkToRoute($route, $args);
411 411
 	}
412 412
 
413 413
 
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 			return $this->configService->getLoopbackPath($route, $args);
441 441
 		}
442 442
 
443
-		return rtrim($base, '/') . $this->urlGenerator->linkToRoute($route, $args);
443
+		return rtrim($base, '/').$this->urlGenerator->linkToRoute($route, $args);
444 444
 	}
445 445
 
446 446
 
Please login to merge, or discard this patch.