We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76c3a27 commit e6bee1bCopy full SHA for e6bee1b
2 files changed
src/Syntax/SteamApi/Client.php
@@ -57,15 +57,12 @@ class Client
57
58
protected $isService = false;
59
60
- protected $responseBody;
61
-
62
public function __construct()
63
{
64
$apiKey = $this->getApiKey();
65
66
$this->client = new GuzzleClient();
67
$this->apiKey = $apiKey;
68
- $this->responseBody = null;
69
70
// Set up the Ids
71
$this->setUpFormatted();
src/Syntax/SteamApi/Steam/App.php
@@ -11,14 +11,12 @@ class App extends Client
11
/**
12
* @var bool
13
*/
14
- private $collection;
15
16
- public function __construct($collection = false)
+ public function __construct()
17
18
parent::__construct();
19
$this->url = 'http://store.steampowered.com/';
20
$this->interface = 'api';
21
- $this->collection = $collection;
22
}
23
24
0 commit comments