Skip to content

Commit

Permalink
Merge pull request #30 from SpireGG/master
Browse files Browse the repository at this point in the history
Changed capitalization of DTO to Dto
  • Loading branch information
dolejska-daniel authored Dec 9, 2018
2 parents 24da7d8 + e4644d4 commit c0d34bf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/RiotAPI/Objects/LeagueItemDto.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class LeagueItemDto extends ApiObject
/** @var bool $hotStreak */
public $hotStreak;

/** @var MiniSeriesDTO $miniSeries */
/** @var MiniSeriesDto $miniSeries */
public $miniSeries;

/** @var int $wins */
Expand Down
2 changes: 1 addition & 1 deletion src/RiotAPI/Objects/LeagueListDto.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class LeagueListDto extends ApiObjectIterable
/** @var string $tier */
public $tier;

/** @var LeagueItemDTO[] $entries */
/** @var LeagueItemDto[] $entries */
public $entries;

/** @var string $queue */
Expand Down
2 changes: 1 addition & 1 deletion src/RiotAPI/Objects/LeaguePositionDto.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class LeaguePositionDto extends ApiObject
/** @var bool $hotStreak */
public $hotStreak;

/** @var MiniSeriesDTO $miniSeries */
/** @var MiniSeriesDto $miniSeries */
public $miniSeries;

/** @var int $wins */
Expand Down
2 changes: 1 addition & 1 deletion src/RiotAPI/Objects/LobbyEventDtoWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
*/
class LobbyEventDtoWrapper extends ApiObjectIterable
{
/** @var LobbyEventDTO[] $eventList */
/** @var LobbyEventDto[] $eventList */
public $eventList;
}
4 changes: 2 additions & 2 deletions src/RiotAPI/RiotAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -2225,7 +2225,7 @@ public function createTournamentCodes( int $tournament_id, int $count, Tournamen
* @param string $tournament_code
* @param Objects\TournamentCodeUpdateParameters $parameters
*
* @return Objects\LobbyEventDTOWrapper
* @return Objects\LobbyEventDtoWrapper
*
* @throws SettingsException
* @throws RequestException
Expand Down Expand Up @@ -2587,4 +2587,4 @@ public function makeTestEndpointCall( $specs, string $region = null, string $met

return $this->getResult();
}
}
}

0 comments on commit c0d34bf

Please sign in to comment.