Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Sep 20, 2024
1 parent 2bb91ad commit 45c7c57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Message/JsonMessageSerializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public function unserialize(string $value): MessageInterface

foreach ($envelopes as $envelope) {
if (is_string($envelope) && class_exists($envelope) && is_subclass_of(
$envelope,
EnvelopeInterface::class
)) {
$envelope,
EnvelopeInterface::class
)) {
$message = $envelope::fromMessage($message);
}
}
Expand Down

0 comments on commit 45c7c57

Please sign in to comment.