Beispiel #1
0
 public function __construct($personaId, $namespace)
 {
     parent::__construct();
     $this->_personaId = (int) $personaId;
     $this->_platformId = (int) BattlelogPlatform::getPlatformId($namespace);
     $this->_getOverview();
 }
Beispiel #2
0
 public function __construct($data)
 {
     $this->_data = $data;
     parent::__construct();
 }
Beispiel #3
0
 public function __construct($username)
 {
     parent::__construct();
     $this->_username = $username;
     $this->_getUser();
 }
Beispiel #4
0
 /**
  * Set the auth password
  *
  * @static
  * @param string $password Password
  * @return void
  */
 public static function setAuthPassword($password)
 {
     self::$_authPassword = $password;
 }