Skip to content

Commit

Permalink
fix: Line break the function arguments
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Aug 16, 2023
1 parent 50789d2 commit f91693a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions lib/Federation/Notifications.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,16 @@ public function __construct(
* @throws RoomHasNoModeratorException
* @throws Exception
*/
public function sendRemoteShare(string $providerId, string $token, string $shareWith, string $sharedBy,
string $sharedByFederatedId, string $shareType, Room $room, Attendee $roomOwnerAttendee): bool {
public function sendRemoteShare(
string $providerId,
string $token,
string $shareWith,
string $sharedBy,
string $sharedByFederatedId,
string $shareType,
Room $room,
Attendee $roomOwnerAttendee,
): bool {
[$user, $remote] = $this->addressHandler->splitUserRemote($shareWith);

$roomName = $room->getName();
Expand Down

0 comments on commit f91693a

Please sign in to comment.