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:----XF8OWDr2FCLUszi1uN1pMIybt6GhewGxu0vRTI/DZTlNZ3DDa85Vo1wQQfTiIJEwf0RAP6pSJpjQT6ojoq0j4iTW7xBCyqkw4xKAPZK+4xCiZmnPT8pJckbW8dkdqR9sxfO9kZQ4VT/1RKktLOFyP//Qz1CkR5ruCL8xDAYcGzNRPBQJD/Y1s8ZD1ROwWejcTYasuMwrZWmQqP4YBVWAYh9Pdvgkxt+FlrHQDiv2XuigfthK9ypwVW+d1t5UGaDSSj2oSOvCWvHAY1zqVadMfQ7is8ivg4pUgvs5oVoo6sPfU56ZTjfudf/r+hI4ikdaQJCjQHqurM5i37QLB7YfaMb5RlvRdJihFpqdvYAbyQG2g/PjddTcQFMNtVJhR6xcJlSO2LibnOCKcMesWfEhfFQOkbDJ1LaErbw1z8w3VHL239ruXWHBd592OEyeAsdShpQp3epoaUhpteR7CQjtPP0+yI8C35+VMhx1pa7KKuhh8XRKqpx/2qa+eZVe2jU78UZ3iDNSfgLcGHIRqiJrIMonAVKhKHjU8xSUa9njkkBNQdT59TqRNZO7AKPe3GVhA0e8SBz6gz7X9jWfThXTYEZdq8ny2vmmC64qki/k2N063qNqrjBcG+ELPqmRqhX21C2JqBgqBi0dnwzsMxEKG+K1hO23tIAcvQxovj9viKY=----ATTACHMENT:----MTE0Njg5MjUzMDI3NTM2OCA1OTA3OTAwNjY5ODE1MjUwIDEwNjE3MTAzNDAxMDE0MA==