Skip to content

Commit 92bc481

Browse files
authored
Add movies field present in API response
1 parent e6f7059 commit 92bc481

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • src/Syntax/SteamApi/Containers

src/Syntax/SteamApi/Containers/App.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ class App extends BaseContainer
5757
public $achievements;
5858

5959
public $dlc;
60+
61+
public $movies;
6062

6163
public function __construct($app)
6264
{
@@ -87,6 +89,7 @@ public function __construct($app)
8789
$this->recommendations = $this->checkIssetField($app, 'recommendations', $this->getFakeRecommendationsObject());
8890
$this->achievements = $this->checkIssetField($app, 'achievements', $this->getFakeAchievementsObject());
8991
$this->dlc = $this->checkIssetCollection($app, 'dlc', new Collection());
92+
$this->movies = $this->checkIssetCollection($app, 'movies', new Collection());
9093

9194
}
9295

0 commit comments

Comments
 (0)