/**
  * Send HTTP Request
  *
  * @param $method
  * @param $uri
  * @param array $getParams
  * @param array $postParams
  * @param string $user
  * @param string $password
  * @param array $jsonParams
  * @param int $requesTimeout
  * @param bool $SSLVerify
  * @param array $customHeaders
  * @param string $accept
  * @param string $protocolVersion
  * @return Response
  */
 public static function sendSimpleRequest($method, $uri, array $getParams = [], array $postParams = [], $user = "", $password = "", array $jsonParams = [], $requesTimeout = 0, $SSLVerify = true, array $customHeaders = [], $accept = "", $protocolVersion = "")
 {
     $requestHelper = new RequestHelper();
     $guzzle = new Client();
     $httpClient = new HTTPClient($guzzle, $requestHelper);
     $httpHelper = new HttpHelper($httpClient);
     $response = $httpHelper->sendSimpleRequest($method, $uri, $getParams, $postParams, $user, $password, $jsonParams, $requesTimeout, $SSLVerify, $customHeaders, $accept, $protocolVersion);
     return $response;
 }