clientRequest() protected method

Make the actual request.
protected clientRequest ( boolean $static, string $uri, array $params ) : Response
$static boolean
$uri string
$params array
return LeagueWrap\Response
 /**
  * Intercept client request to patch platform id into url (ugly hack!)
  *
  * @param bool $static
  * @param string $uri
  * @param array $params
  * @return string
  * @throws \LeagueWrap\Exception\LimitReachedException
  */
 protected function clientRequest($static, $uri, $params)
 {
     $uri = sprintf($uri, $this->platformIds[$this->region->getRegion()]);
     return parent::clientRequest($static, $uri, $params);
 }