Skip to content

Commit 80fc806

Browse files
authored
moving mandatory params before optional ones
1 parent c89e69e commit 80fc806

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Twilio/Clients/TwilioRestClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ public TwilioRestClient(
9797
public TwilioRestClient(
9898
string username,
9999
string password,
100+
AuthStrategy authstrategy,
100101
string accountSid = null,
101102
string region = null,
102103
HttpClient httpClient = null,
103-
string edge = null,
104-
AuthStrategy authstrategy
104+
string edge = null
105105
)
106106
{
107107
_username = username;

0 commit comments

Comments
 (0)