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