Skip to content

Commit f8e2b84

Browse files
CS fixes
1 parent 146a921 commit f8e2b84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MessageBirdTransport.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(#[\SensitiveParameter] string $token, string $from,
4141

4242
public function __toString(): string
4343
{
44-
return sprintf('messagebird://%s?from=%s', $this->getEndpoint(), $this->from);
44+
return \sprintf('messagebird://%s?from=%s', $this->getEndpoint(), $this->from);
4545
}
4646

4747
public function supports(MessageInterface $message): bool
@@ -60,7 +60,7 @@ protected function doSend(MessageInterface $message): SentMessage
6060
$options['recipients'] = [$message->getPhone()];
6161
$options['body'] = $message->getSubject();
6262

63-
$endpoint = sprintf('https://%s/messages', $this->getEndpoint());
63+
$endpoint = \sprintf('https://%s/messages', $this->getEndpoint());
6464
$response = $this->client->request('POST', $endpoint, [
6565
'auth_basic' => ['AccessKey', $this->token],
6666
'body' => array_filter($options),

0 commit comments

Comments
 (0)