chore: Типы

This commit is contained in:
origami11@yandex.ru 2025-12-09 19:46:55 +03:00
parent fbe5eb878e
commit 3d34ae4b84

View file

@ -52,7 +52,7 @@ class HttpResponse
while ($index > 0) {
$chunk [] = substr($this->response, $this->offset, $index);
$this->offset += $index;
$index = hexdec($this->getLine());
$index = (int)hexdec($this->getLine());
}
$this->data = implode("", $chunk);