-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from LogansUA/feature-options-resolving
Feature options resolving
- Loading branch information
Showing
9 changed files
with
179 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
namespace BlizzardApi; | ||
|
||
/** | ||
* Class GeoData | ||
* | ||
* @author Oleg Kachinsky <[email protected]> | ||
*/ | ||
class GeoData | ||
{ | ||
/** | ||
* @var array $list List of available regions and locales | ||
*/ | ||
static public $list = [ | ||
'eu' => [ | ||
'en_gb', | ||
'de_de', | ||
'es_es', | ||
'fr_fr', | ||
'it_it', | ||
'pl_pl', | ||
'pt_pt', | ||
'ru_ru', | ||
], | ||
'us' => [ | ||
'en_us', | ||
'pt_br', | ||
'es_mx', | ||
], | ||
'kr' => [ | ||
'ko_kr', | ||
], | ||
'tw' => [ | ||
'zh_tw', | ||
], | ||
'sea' => [ | ||
'en_us', | ||
], | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters