Skip to content

Commit

Permalink
fix null given argument
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-volga authored Mar 22, 2024
1 parent 1fd3579 commit 1560a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function logSoapCall($client, $operation)
);

$this->writeMessage(
static::getSoapCallResponseMessage($client),
static::getSoapCallResponseMessage($client) ?? '',
['operation' => $operation, 'type' => self::TYPE_RESPONSE]
);
}
Expand Down

0 comments on commit 1560a8f

Please sign in to comment.