Skip to content

Commit

Permalink
Fix the lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Hectorhammett committed Dec 10, 2024
1 parent 38ebe15 commit 3e1800c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ClientStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function readResponse()
$responseEvent->headers = $status->metadata;
$responseEvent->status = $status->code;
$responseEvent->processId = (int) getmypid();
$responseEvent->requestId = crc32((string) spl_object_id($this) . getmypid());;
$responseEvent->requestId = crc32((string) spl_object_id($this) . getmypid());

if ($response && $response instanceof Message) {
$response->serializeToJsonString();
Expand Down

0 comments on commit 3e1800c

Please sign in to comment.