/opt/cpanel/ea-wappspector/vendor/guzzlehttp/guzzle/src/Handler
NameSizeModeActions
CurlFactory.php1035790644editdlrm
CurlFactoryInterface.php6570644editdlrm
CurlHandler.php31380644editdlrm
CurlMultiHandler.php580170644editdlrm
CurlShareHandleState.php52590644editdlrm
CurlVersion.php114460644editdlrm
EasyHandle.php36360644editdlrm
HeaderProcessor.php26730644editdlrm
HostValidator.php77060644editdlrm
MockHandler.php63760644editdlrm
Proxy.php32100644editdlrm
ProxyEnvironment.php38690644editdlrm
StreamHandler.php475070644editdlrm
TlsVersion.php28370644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php (3636B)
response = null; [$ver, $status, $reason, $headers] = HeaderProcessor::parseHeaders($this->headers); $normalizedKeys = Utils::normalizeHeaderKeys($headers); if (isset($this->options['decode_content']) && $this->options['decode_content'] !== false && isset($normalizedKeys['content-encoding'])) { $headers['x-encoded-content-encoding'] = $headers[$normalizedKeys['content-encoding']]; unset($headers[$normalizedKeys['content-encoding']]); if (isset($normalizedKeys['content-length'])) { $headers['x-encoded-content-length'] = $headers[$normalizedKeys['content-length']]; $bodyLength = (int) $this->sink->getSize(); if ($bodyLength) { $headers[$normalizedKeys['content-length']] = [(string) $bodyLength]; } else { unset($headers[$normalizedKeys['content-length']]); } } } // Attach a response to the easy handle with the parsed headers. $this->response = new Response( $status, $headers, $this->sink, $ver, $reason ); } /** * @param string $name * * @return void * * @throws \BadMethodCallException */ public function __get($name) { $msg = $name === 'handle' ? 'The EasyHandle has been released' : 'Invalid property: '.$name; throw new \BadMethodCallException($msg); } }