コード例 #1
0
ファイル: App.php プロジェクト: nicklaw5/steam-web-api-php
 public function __construct($steamApiKey)
 {
     parent::__construct($steamApiKey);
 }
コード例 #2
0
ファイル: User.php プロジェクト: nicklaw5/steam-web-api-php
 public function __construct($steamApiKey, $steamId = null)
 {
     parent::__construct($steamApiKey);
     $this->setSteamId($steamId);
 }