Skip to content

Commit

Permalink
moving mandatory params before optional ones
Browse files Browse the repository at this point in the history
  • Loading branch information
AsabuHere authored Nov 27, 2024
1 parent c89e69e commit 80fc806
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Twilio/Clients/TwilioRestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ public TwilioRestClient(
public TwilioRestClient(
string username,
string password,
AuthStrategy authstrategy,
string accountSid = null,
string region = null,
HttpClient httpClient = null,
string edge = null,
AuthStrategy authstrategy
string edge = null
)
{
_username = username;
Expand Down

0 comments on commit 80fc806

Please sign in to comment.