LeagueWrap\Api\Staticdata::appendId PHP Method

appendId() protected method

Check if we should append the id to the end of the url or not.
protected appendId ( mixed $requestId ) : boolean
$requestId mixed
return boolean
    protected function appendId($requestId)
    {
        if (!is_null($requestId) && $requestId != 'all') {
            return true;
        }
        return false;
    }