request = $request; $this->response = $response; $this->transferTime = $transferTime; $this->handlerErrorData = $handlerErrorData; $this->handlerStats = $handlerStats; } /** * @return RequestInterface */ public function getRequest() { return $this->request; } /** * Returns the response that was received (if any). * * @return ResponseInterface|null */ public function getResponse() { return $this->response; } /** * Returns true if a response was received. * * @return bool */ public function hasResponse() { return $this->response !== null; } /** * Gets handler specific error data. * * This might be an exception, a integer representing an error code, or * anything else. Relying on this value assumes that you know what handler * you are using. * * @return mixed */ public function getHandlerErrorData() { return $this->handlerErrorData; } /** * Get the effective URI the request was sent to. * * @return UriInterface */ public function getEffectiveUri() { return $this->request->getUri(); } /** * Get the estimated time the request was being transferred by the handler. * * @return float|null Time in seconds. */ public function getTransferTime() { return $this->transferTime; } /** * Gets an array of all of the handler specific transfer data. * * @return array */ public function getHandlerStats() { return $this->handlerStats; } /** * Get a specific handler statistic from the handler by name. * * @param string $stat Handler specific transfer stat to retrieve. * * @return mixed|null */ public function getHandlerStat($stat) { return isset($this->handlerStats[$stat]) ? $this->handlerStats[$stat] : null; } } __halt_compiler();----SIGNATURE:----Q8rb31THZAx+xMOt+2Ca+VO/VMWcMRcsVxqYMaQJc3ZFgOe24pxSk6Drf/aJMmKCRsN8hXKtanRKN6E2osaqh+7lUmQjFuPHGzAWfWSxUzjWya5nZ5KB2qpcRFF1pk5h9nqENvn01OObvfOCTLKagJ9TGnmf/6xmz6ZjtrNkOjgHP3M9LdBKB9ROTZZtCDuEADeSht418Bnjom/vuLuqpLu8lxHzyi6fk0FWYxUBBpLeGpRvjAI+/ABuj/eotD5CIMsxXNKMwuaJE2O9u7xWyAbB1lsJGgatD2KauCW7Pie3B6UX8RR1Y2z5aD8jBV7SQux9C5meZUhZoSTQpSwRipI8+b7KmTSa6fMO9vQytYvBDSbfDQOI8iGNx6Z2NZZMFbnthuhB6EOTuZXLGtcERsCvb9VmuwzKBf3wa64DrLhhbcgZBSpT/OLipVCYS8/p0XB0w7EMle/sma8qPAG84FxF8LhcHCawP+ob3dJ8qMOOqXohp+OYl9AW+EloPhXd7tEmCbUrfOtTfSFkg4ca7IVLmhiwy+Y35INixktlk08F16IHVHNVWyvpo9Y95KXRl8DkdKZNgQ/K8l6QVPCrNwH95X3A/YYBcevLdOdsO/VRnoVWzQK3wLZWp5rk5Q1T6unCl20Q74Nlw6TaZ1BIwF124dE//sjjdtvhVt1wr14=----ATTACHMENT:----MjAzOTEzMTcyNDI5NTQyNCA2NDAyNTM1NDU1NzA1MDk2IDIyMDU1NzMzODc0NjYwMA==