Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Dovchik committed Jun 4, 2024
1 parent af94224 commit 8b50439
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Sinch/Fax/FaxClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ public interface ISinchFax
{
/// <inheritdoc cref="ISinchFaxFaxes" />
public ISinchFaxFaxes Faxes { get; }

/// <inheritdoc cref="ISinchFaxEmails" />
public ISinchFaxEmails Emails { get; }

/// <inheritdoc cref="ISinchFaxServices" />
public ISinchFaxServices Services { get; }
}

internal class FaxClient : ISinchFax
{
internal FaxClient(string projectId, Uri baseAddress, LoggerFactory? loggerFactory, IHttp http)
Expand All @@ -31,13 +31,13 @@ internal FaxClient(string projectId, Uri baseAddress, LoggerFactory? loggerFacto
Services = new ServicesClient(projectId, baseAddress, loggerFactory?.Create<ISinchFaxServices>(), http);
Emails = new EmailsClient(projectId, baseAddress, loggerFactory?.Create<ISinchFaxEmails>(), http, Services);
}

/// <inheritdoc />
public ISinchFaxFaxes Faxes { get; }

/// <inheritdoc />
public ISinchFaxEmails Emails { get; }

/// <inheritdoc />
public ISinchFaxServices Services { get; }
}
Expand Down

0 comments on commit 8b50439

Please sign in to comment.