LeagueWrap\Api\Champion::free PHP Method

free() public method

Gets all the free champions for this week.
public free ( ) : championList
return championList
    public function free()
    {
        $this->free = 'true';
        $championList = $this->all();
        $this->free = 'false';
        return $championList;
    }