[HttpClient] Remove unused local variable

This commit is contained in:
Samuel NELA 2019-03-28 10:30:05 +01:00
parent 71c33c1531
commit 60b077337c

View File

@ -28,7 +28,6 @@ class ErrorChunk implements ChunkInterface
public function __construct(int $offset, \Throwable $error = null)
{
$didThrow = false;
$this->offset = $offset;
$this->error = $error;
$this->errorMessage = null !== $error ? $error->getMessage() : 'Reading from the response stream reached the inactivity timeout.';