Skip to content

Commit

Permalink
Dropped old code
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Oct 8, 2023
1 parent e4f72ca commit 2cf557f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Frame/HybiFrame.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ public function encode(string $payload, int $type = Protocol::TYPE_TEXT, bool $m

if (\PHP_INT_MAX > 2147483647) {
$this->buffer .= \pack('NN', $this->length >> 32, $this->length);
// $this->buffer .= pack('I', $this->length);
} else {
$this->buffer .= \pack('NN', 0, $this->length);
}
Expand Down

0 comments on commit 2cf557f

Please sign in to comment.