Skip to content

Commit bd8ab90

Browse files
committed
[Notifier] Tweak some phpdocs
1 parent cc1c229 commit bd8ab90

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Channel/EmailChannel.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ public function __construct(TransportInterface $transport = null, MessageBusInte
4646
$this->envelope = $envelope;
4747
}
4848

49+
/**
50+
* @param EmailRecipientInterface $recipient
51+
*/
4952
public function notify(Notification $notification, RecipientInterface $recipient, string $transportName = null): void
5053
{
5154
$message = null;

Channel/SmsChannel.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
*/
2323
class SmsChannel extends AbstractChannel
2424
{
25+
/**
26+
* @param SmsRecipientInterface $recipient
27+
*/
2528
public function notify(Notification $notification, RecipientInterface $recipient, string $transportName = null): void
2629
{
2730
$message = null;

0 commit comments

Comments
 (0)