We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d8339b commit c785a45Copy full SHA for c785a45
2 files changed
src/Syntax/SteamApi/Client.php
@@ -107,6 +107,7 @@ protected function setUpClient(array $arguments = [])
107
$parameters = [
108
'key' => $this->apiKey,
109
'format' => $this->apiFormat,
110
+ 'l' => \Config::get('steam-api.steamLang')
111
];
112
113
if (! empty($arguments)) {
src/config/config.php
@@ -7,4 +7,5 @@
7
* Once you get your key, add it here.
8
*/
9
'steamApiKey' => env('STEAM_API_KEY'),
10
+ 'steamLang' => env('STEAM_LANG', 'english'),
11
);
0 commit comments