Skip to content

Commit

Permalink
Coding standard fix
Browse files Browse the repository at this point in the history
  • Loading branch information
snapshotpl committed Apr 7, 2023
1 parent f16429b commit 38179ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/gps/GpsConsumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function reject(Message $message, bool $requeue = false): void
{
$nativeMessage = $message->getNativeMessage();

if ($nativeMessage === null) {
if (null === $nativeMessage) {
throw new \LogicException('Native google pub/sub message required but it is empty');
}

Expand Down

0 comments on commit 38179ea

Please sign in to comment.