Skip to content

Commit fe54b27

Browse files
geisigithub-actions[bot]
authored andcommitted
Fix styling
1 parent 2043a4b commit fe54b27

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/MicrosoftGraphTransport.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,18 @@ protected function doSend(SentMessage $message): void
5555
}
5656

5757
/**
58-
* @param Collection<Address> $recipients
58+
* @param Collection<Address> $recipients
5959
* @return array
6060
*/
6161
protected function transformEmailAddresses(Collection $recipients): array
6262
{
6363
return $recipients
64-
->map(fn(Address $recipient) => $this->transformEmailAddress($recipient))
64+
->map(fn (Address $recipient) => $this->transformEmailAddress($recipient))
6565
->toArray();
6666
}
6767

6868
/**
69-
* @param Address $address
69+
* @param Address $address
7070
* @return array
7171
*/
7272
protected function transformEmailAddress(Address $address): array
@@ -79,14 +79,14 @@ protected function transformEmailAddress(Address $address): array
7979
}
8080

8181
/**
82-
* @param Email $email
83-
* @param Envelope $envelope
82+
* @param Email $email
83+
* @param Envelope $envelope
8484
* @return Collection<Address>
8585
*/
8686
protected function getRecipients(Email $email, Envelope $envelope): Collection
8787
{
8888
return collect($envelope->getRecipients())
89-
->filter(fn(Address $address) => !in_array($address, array_merge($email->getCc(), $email->getBcc()), true));
89+
->filter(fn (Address $address) => ! in_array($address, array_merge($email->getCc(), $email->getBcc()), true));
9090
}
9191

9292
protected function getAttachments(Email $email): array

0 commit comments

Comments
 (0)