Skip to content

Commit 6d508a2

Browse files
Travis BlasingameTravis Blasingame
authored andcommitted
Adding in support for getting details on a group.
1 parent a4c5dae commit 6d508a2

File tree

9 files changed

+1705
-43
lines changed

9 files changed

+1705
-43
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Each service from the steam api has it's own methods you can use.
4242
- [User](#user)
4343
- [User Stats](#user-stats)
4444
- [App](#app)
45+
- [Group](#group)
4546

4647
### Global
4748
These are methods that are available to each service
@@ -276,3 +277,29 @@ appIds| int[] | The ids of the games you want details for | Yes |
276277
This method will return an array of app objects directly from steam. It includes the appId and the app name.
277278

278279
> Example Output: [GetAppList](./examples/app/GetAppList.txt)
280+
281+
### Group
282+
This service is used to get details on a steam group.
283+
284+
```php
285+
Steam::group()
286+
```
287+
288+
#### GetGroupSummary
289+
This method will get the details for a group.
290+
291+
##### Arguments
292+
293+
Name | Type | Description | Required | Default
294+
-----|------|-------------|----------|---------
295+
group| string or int | The id or the name of the group. | Yes
296+
297+
##### Example usage
298+
299+
```php
300+
<?php
301+
$news = Steam::group()->GetGroupSummary('Valve');
302+
?>
303+
```
304+
305+
> Example Output: [GetGroupSummary](./examples/group/GetGroupSummary.txt)

0 commit comments

Comments
 (0)