for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Syntax\SteamApi;
class Inventory
{
public $numberOfBackpackSlots;
public $items;
public function __construct($slots, $items)
$this->numberOfBackpackSlots = $slots;
$this->items = $items;
}