@@ -453,7 +453,7 @@ discard block |
||
| 453 | 453 | */ |
| 454 | 454 | public static function generateLink($circleUniqueId) { |
| 455 | 455 | return \OC::$server->getURLGenerator() |
| 456 | - ->linkToRoute('circles.Navigation.navigate') . '#' . $circleUniqueId; |
|
| 456 | + ->linkToRoute('circles.Navigation.navigate').'#'.$circleUniqueId; |
|
| 457 | 457 | } |
| 458 | 458 | |
| 459 | 459 | |
@@ -468,7 +468,7 @@ discard block |
||
| 468 | 468 | */ |
| 469 | 469 | public static function generateAbsoluteLink($circleUniqueId) { |
| 470 | 470 | return \OC::$server->getURLGenerator() |
| 471 | - ->linkToRouteAbsolute('circles.Navigation.navigate') . '#' . $circleUniqueId; |
|
| 471 | + ->linkToRouteAbsolute('circles.Navigation.navigate').'#'.$circleUniqueId; |
|
| 472 | 472 | } |
| 473 | 473 | |
| 474 | 474 | |
@@ -483,8 +483,8 @@ discard block |
||
| 483 | 483 | */ |
| 484 | 484 | public static function generateRemoteLink(FederatedLink $link) { |
| 485 | 485 | return \OC::$server->getURLGenerator() |
| 486 | - ->linkToRoute('circles.Navigation.navigate') . '#' . $link->getUniqueId() |
|
| 487 | - . '-' . $link->getToken(); |
|
| 486 | + ->linkToRoute('circles.Navigation.navigate').'#'.$link->getUniqueId() |
|
| 487 | + . '-'.$link->getToken(); |
|
| 488 | 488 | } |
| 489 | 489 | |
| 490 | 490 | |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | public static function generateUserParameter(SharingFrame $frame) { |
| 497 | 497 | |
| 498 | 498 | if ($frame->getCloudId() !== null) { |
| 499 | - $name = $frame->getAuthor() . '@' . $frame->getCloudId(); |
|
| 499 | + $name = $frame->getAuthor().'@'.$frame->getCloudId(); |
|
| 500 | 500 | } else { |
| 501 | 501 | $name = MiscService::getDisplay($frame->getAuthor(), Member::TYPE_USER); |
| 502 | 502 | } |