Skip to content

Commit

Permalink
- more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy-j committed Apr 29, 2020
1 parent ebe1759 commit a7ad12b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MessageSerializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public static function unpack(array $payload): MessageInterface
$message->setReplyTo($payload['replyTo']);
}

$message->setCC($payload['cc']);
$message->setBCC($payload['bcc']);
$message->setCC(...$payload['cc']);
$message->setBCC(...$payload['bcc']);

return $message;
}
Expand Down

0 comments on commit a7ad12b

Please sign in to comment.