Skip to content

Commit

Permalink
Updated Interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
zyberspace committed Apr 5, 2016
1 parent a37f9d1 commit 9347cd3
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 0 deletions.
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());
}
}
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 lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Teams_205790.php
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));
}
}
16 changes: 16 additions & 0 deletions lib/Zyberspace/SteamWebApi/Interfaces/ITFSystem_440.php
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());
}
}

0 comments on commit 9347cd3

Please sign in to comment.