Skip to content

Commit e616ab1

Browse files
committed
Remove alignment to avoid threshing on resource additions
1 parent be55c40 commit e616ab1

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

src/MessageBird/Client.php

+25-25
Original file line numberDiff line numberDiff line change
@@ -232,31 +232,31 @@ public function __construct($accessKey = null, Common\HttpClient $httpClient = n
232232
$this->setAccessKey($accessKey);
233233
}
234234

235-
$this->messages = new Resources\Messages($this->HttpClient);
236-
$this->hlr = new Resources\Hlr($this->HttpClient);
237-
$this->verify = new Resources\Verify($this->HttpClient);
238-
$this->balance = new Resources\Balance($this->HttpClient);
239-
$this->voicemessages = new Resources\VoiceMessage($this->HttpClient);
240-
$this->lookup = new Resources\Lookup($this->HttpClient);
241-
$this->lookupHlr = new Resources\LookupHlr($this->HttpClient);
242-
$this->chatMessages = new Resources\Chat\Message($this->ChatAPIHttpClient);
243-
$this->chatChannels = new Resources\Chat\Channel($this->ChatAPIHttpClient);
244-
$this->chatPlatforms = new Resources\Chat\Platform($this->ChatAPIHttpClient);
245-
$this->chatContacts = new Resources\Chat\Contact($this->ChatAPIHttpClient);
246-
$this->voiceCallFlows = new Resources\Voice\CallFlows($this->VoiceAPIHttpClient);
247-
$this->voiceCalls = new Resources\Voice\Calls($this->VoiceAPIHttpClient);
248-
$this->voiceLegs = new Resources\Voice\Legs($this->VoiceAPIHttpClient);
249-
$this->voiceRecordings = new Resources\Voice\Recordings($this->VoiceAPIHttpClient);
250-
$this->voiceTranscriptions = new Resources\Voice\Transcriptions($this->VoiceAPIHttpClient);
251-
$this->voiceWebhooks = new Resources\Voice\Webhooks($this->VoiceAPIHttpClient);
252-
$this->mmsMessages = new Resources\MmsMessages($this->HttpClient);
253-
$this->contacts = new Resources\Contacts($this->HttpClient);
254-
$this->groups = new Resources\Groups($this->HttpClient);
255-
$this->conversations = new Resources\Conversation\Conversations($this->ConversationsAPIHttpClient);
256-
$this->conversationMessages = new Resources\Conversation\Messages($this->ConversationsAPIHttpClient);
257-
$this->conversationWebhooks = new Resources\Conversation\Webhooks($this->ConversationsAPIHttpClient);
258-
$this->partnerAccounts = new Resources\PartnerAccount\Accounts($this->partnerAccountClient);
259-
$this->phoneNumbers = new Resources\PhoneNumbers($this->numbersAPIClient);
235+
$this->messages = new Resources\Messages($this->HttpClient);
236+
$this->hlr = new Resources\Hlr($this->HttpClient);
237+
$this->verify = new Resources\Verify($this->HttpClient);
238+
$this->balance = new Resources\Balance($this->HttpClient);
239+
$this->voicemessages = new Resources\VoiceMessage($this->HttpClient);
240+
$this->lookup = new Resources\Lookup($this->HttpClient);
241+
$this->lookupHlr = new Resources\LookupHlr($this->HttpClient);
242+
$this->chatMessages = new Resources\Chat\Message($this->ChatAPIHttpClient);
243+
$this->chatChannels = new Resources\Chat\Channel($this->ChatAPIHttpClient);
244+
$this->chatPlatforms = new Resources\Chat\Platform($this->ChatAPIHttpClient);
245+
$this->chatContacts = new Resources\Chat\Contact($this->ChatAPIHttpClient);
246+
$this->voiceCallFlows = new Resources\Voice\CallFlows($this->VoiceAPIHttpClient);
247+
$this->voiceCalls = new Resources\Voice\Calls($this->VoiceAPIHttpClient);
248+
$this->voiceLegs = new Resources\Voice\Legs($this->VoiceAPIHttpClient);
249+
$this->voiceRecordings = new Resources\Voice\Recordings($this->VoiceAPIHttpClient);
250+
$this->voiceTranscriptions = new Resources\Voice\Transcriptions($this->VoiceAPIHttpClient);
251+
$this->voiceWebhooks = new Resources\Voice\Webhooks($this->VoiceAPIHttpClient);
252+
$this->mmsMessages = new Resources\MmsMessages($this->HttpClient);
253+
$this->contacts = new Resources\Contacts($this->HttpClient);
254+
$this->groups = new Resources\Groups($this->HttpClient);
255+
$this->conversations = new Resources\Conversation\Conversations($this->ConversationsAPIHttpClient);
256+
$this->conversationMessages = new Resources\Conversation\Messages($this->ConversationsAPIHttpClient);
257+
$this->conversationWebhooks = new Resources\Conversation\Webhooks($this->ConversationsAPIHttpClient);
258+
$this->partnerAccounts = new Resources\PartnerAccount\Accounts($this->partnerAccountClient);
259+
$this->phoneNumbers = new Resources\PhoneNumbers($this->numbersAPIClient);
260260
$this->availablePhoneNumbers = new Resources\AvailablePhoneNumbers($this->numbersAPIClient);
261261
}
262262

0 commit comments

Comments
 (0)