Skip to content

Commit

Permalink
Add getters for baseUrl, partition and username on the UserBase Client
Browse files Browse the repository at this point in the history
  • Loading branch information
joostfaassen committed Sep 27, 2015
1 parent 1b12e62 commit e554dbf
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Client.php
Expand Up @@ -36,6 +36,21 @@ private function getStatusCode($ch)
$info = curl_getinfo($ch);
return (int)$info['http_code'];
}

public function getBaseUrl()
{
return $this->baseUrl;
}

public function getPartition()
{
return $this->partition;
}

public function getUsername()
{
return $this->username;
}

public function getUserByUsername($username)
{
Expand Down

0 comments on commit e554dbf

Please sign in to comment.