Skip to content

Commit 868e825

Browse files
authored
Fix OverrideRecipientTransport to return the state
1 parent 97e038e commit 868e825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ScayTrase/SmsDeliveryBundle/Transport/OverrideRecipientTransport.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ public function __construct(TransportInterface $transport, $recipient)
3939
public function send(ShortMessageInterface $message)
4040
{
4141
$message->setRecipient($this->recipient);
42-
$this->transport->send($message);
42+
return $this->transport->send($message);
4343
}
4444
}

0 commit comments

Comments
 (0)