Skip to content

Commit 92e348d

Browse files
authored
Fix: Allow isPublishMessageWithNullCharacter to receive messages as null (#162)
1 parent 0e91553 commit 92e348d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MessageProcessors/Mqtt311MessageProcessor.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ protected function parseAndValidateSubscribeAcknowledgementMessage(string $data)
6666
/**
6767
* Determines if the given message is a PUBLISH message and contains the unicode null character U+0000.
6868
*
69-
* @param Message $message
69+
* @param Message|null $message
7070
* @return bool
7171
*/
72-
private function isPublishMessageWithNullCharacter(Message $message): bool
72+
private function isPublishMessageWithNullCharacter(?Message $message): bool
7373
{
7474
return $message !== null
7575
&& $message->getType()->equals(MessageType::PUBLISH())

0 commit comments

Comments
 (0)