LeagueWrap\Api\Champion::championById PHP Method

championById() public method

Gets the information for a single champion
public championById ( integer $championId ) : LeagueWrap\Dto\Champion
$championId integer
return LeagueWrap\Dto\Champion
    public function championById($championId)
    {
        $info = $this->request('champion/' . $championId);
        return $this->attachStaticDataToDto(new Champ($info));
    }