コード例 #1
0
ファイル: User.php プロジェクト: nicklaw5/steam-web-api-php
 public function __construct($steamApiKey, $steamId = null)
 {
     parent::__construct($steamApiKey);
     $this->setSteamId($steamId);
 }
コード例 #2
0
ファイル: App.php プロジェクト: nicklaw5/steam-web-api-php
 public function __construct($steamApiKey)
 {
     parent::__construct($steamApiKey);
 }
コード例 #3
0
 /**
  * @expectedException SteamApi\Exceptions\ApiArgumentRequiredException
  **/
 public function testArgumentRequired()
 {
     $client = new Client($this->steamApiKey);
     $client->setUpService();
 }