From e554dbf485dd8110bbb19ead51421b32989711d7 Mon Sep 17 00:00:00 2001 From: "j.faassen" Date: Sun, 27 Sep 2015 17:17:36 +0200 Subject: [PATCH] Add getters for baseUrl, partition and username on the UserBase Client --- src/Client.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/Client.php b/src/Client.php index ad421a5..ff9adb0 100644 --- a/src/Client.php +++ b/src/Client.php @@ -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) {