-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a37f9d1
commit 9347cd3
Showing
4 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2AutomatedTourney_205790.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace Zyberspace\SteamWebApi\Interfaces; | ||
|
||
use Zyberspace\SteamWebApi\AbstractInterface; | ||
class IDOTA2AutomatedTourney_205790 extends AbstractInterface | ||
{ | ||
/** | ||
* /IDOTA2AutomatedTourney_205790/GetActiveTournamentList/v1/ | ||
* | ||
*/ | ||
public function GetActiveTournamentListV1() | ||
{ | ||
return $this->_call(__METHOD__, 'GET', array()); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2AutomatedTourney_570.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace Zyberspace\SteamWebApi\Interfaces; | ||
|
||
use Zyberspace\SteamWebApi\AbstractInterface; | ||
class IDOTA2AutomatedTourney_570 extends AbstractInterface | ||
{ | ||
/** | ||
* /IDOTA2AutomatedTourney_570/GetActiveTournamentList/v1/ | ||
* | ||
*/ | ||
public function GetActiveTournamentListV1() | ||
{ | ||
return $this->_call(__METHOD__, 'GET', array()); | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Teams_205790.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Zyberspace\SteamWebApi\Interfaces; | ||
|
||
use Zyberspace\SteamWebApi\AbstractInterface; | ||
class IDOTA2Teams_205790 extends AbstractInterface | ||
{ | ||
/** | ||
* /IDOTA2Teams_205790/GetTeamInfo/v1/ | ||
* | ||
* @param uint32 $team_id Team ID that you're requesting info about | ||
* @param uint32 $league_id League ID for which you're requesting all regisered teams info | ||
*/ | ||
public function GetTeamInfoV1($team_id = null, $league_id = null) | ||
{ | ||
return $this->_call(__METHOD__, 'GET', array('team_id' => $team_id, 'league_id' => $league_id)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace Zyberspace\SteamWebApi\Interfaces; | ||
|
||
use Zyberspace\SteamWebApi\AbstractInterface; | ||
class ITFSystem_440 extends AbstractInterface | ||
{ | ||
/** | ||
* /ITFSystem_440/GetWorldStatus/v1/ | ||
* | ||
*/ | ||
public function GetWorldStatusV1() | ||
{ | ||
return $this->_call(__METHOD__, 'GET', array()); | ||
} | ||
} |