LeagueWrap\Api\Staticdata::appendId PHP Метод

appendId() защищенный Метод

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