LeagueWrap\Api\Featuredgames::featuredGames PHP Method

featuredGames() public method

Requests all featured games.
public featuredGames ( ) : LeagueWrap\Dto\AbstractDto
return LeagueWrap\Dto\AbstractDto
    public function featuredGames()
    {
        $response = $this->request('featured', [], false, false);
        return $this->attachStaticDataToDto(new FeaturedGamesDto($response));
    }