| 1 | <?php |
||
| 13 | class ChampionApi extends BaseApi |
||
| 14 | { |
||
| 15 | const API_URL_CHAMPIONS_ALL = '/lol/platform/v3/champions'; |
||
| 16 | const API_URL_CHAMPION_BY_ID = '/lol/platform/v3/champions/{id}'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param bool $onlyFreeToPlay |
||
| 20 | * |
||
| 21 | * @return ApiResult |
||
| 22 | */ |
||
| 23 | 1 | public function getAllChampions($onlyFreeToPlay = false) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @param int $championId |
||
| 31 | * |
||
| 32 | * @return ApiResult |
||
| 33 | */ |
||
| 34 | 1 | public function getChampionById($championId) |
|
| 40 | } |
||
| 41 |