rename APIClient to ApiClient, APIClientException to APIException

This commit is contained in:
wing328
2015-05-28 15:06:31 +08:00
parent 4d1d163a73
commit e993d08563
13 changed files with 53 additions and 53 deletions

View File

@@ -27,7 +27,7 @@ class UserApi {
function __construct($apiClient = null) {
if (null === $apiClient) {
if (Configuration::$apiClient === null) {
Configuration::$apiClient = new APIClient(); // create a new API client if not present
Configuration::$apiClient = new ApiClient(); // create a new API client if not present
$this->apiClient = Configuration::$apiClient;
}
else
@@ -37,7 +37,7 @@ class UserApi {
}
}
private $apiClient; // instance of the APIClient
private $apiClient; // instance of the ApiClient
/**
* get the API client