LeagueWrap\Region::getChampionMasteryDomain PHP Method

getChampionMasteryDomain() public method

    public function getChampionMasteryDomain()
    {
        return sprintf($this->championMasteryDomain, $this->getRegion(), $this->getPlatformId());
    }

Usage Example

Example #1
0
 public function testGetChampionMasteryDomain()
 {
     $region = new Region('euw');
     $this->assertEquals('https://euw.api.pvp.net/championmastery/location/EUW1/', $region->getChampionMasteryDomain());
 }