Skip to content

Commit

Permalink
PAYOSWXP-121: fixes phpstan
Browse files Browse the repository at this point in the history
  • Loading branch information
amirinterlutions committed Mar 1, 2024
1 parent 3df76a3 commit 329c7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/ResendNotifyHandler/ResendNotifyHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function send(): void
foreach ($notificationQueue as $notification) {
$messageDecode = null;
if ($notification->getMessage() !== null) {
$messageDecode = base64_decode($notification->getMessage(), true);
$messageDecode = base64_decode($notification->getMessage());
}
if ($messageDecode !== null) {
/** @var NotificationForwardCommand $message */
Expand Down

0 comments on commit 329c7c8

Please sign in to comment.