We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 181225c commit 0879070Copy full SHA for 0879070
1 file changed
src/Syntax/SteamApi/Steam/App.php
@@ -15,7 +15,7 @@ public function __construct()
15
$this->interface = 'api';
16
}
17
18
- public function appDetails($appIds, $language = 'english')
+ public function appDetails($appIds, $country = null, $language = null)
19
{
20
// Set up the api details
21
$this->method = 'appdetails';
@@ -24,6 +24,7 @@ public function appDetails($appIds, $language = 'english')
24
// Set up the arguments
25
$arguments = [
26
'appids' => $appIds,
27
+ 'cc' => $country,
28
'l' => $language,
29
];
30
0 commit comments