LeagueWrap\Api\Staticdata::makeRequest PHP Method

makeRequest() protected method

Make the request given the proper information.
protected makeRequest ( string $path, mixed $requestId, array $params ) : array
$path string
$requestId mixed
$params array
return array
    protected function makeRequest($path, $requestId, array $params)
    {
        if ($this->appendId($requestId)) {
            $path .= "/{$requestId}";
        }
        return $this->request($path, $params, true);
    }