Example #1
0
 public function __construct($steamApiKey, $steamId = null)
 {
     parent::__construct($steamApiKey);
     $this->setSteamId($steamId);
 }
Example #2
0
 public function __construct($steamApiKey)
 {
     parent::__construct($steamApiKey);
 }
 /**
  * @expectedException SteamApi\Exceptions\ApiArgumentRequiredException
  **/
 public function testArgumentRequired()
 {
     $client = new Client($this->steamApiKey);
     $client->setUpService();
 }