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

@@ -31,7 +31,7 @@ class Configuration {
public static $username = '';
public static $password = '';
// an instance of APIClient
// an instance of ApiClient
public static $apiClient;
// debugging
@@ -39,11 +39,11 @@ class Configuration {
public static $debug_file = 'php://output'; //output debug log to STDOUT by default
/*
* manually initalize API client
* manually initalize Api client
*/
public static function init() {
if (self::$apiClient === null)
self::$apiClient = new APIClient();
self::$apiClient = new ApiClient();
}
}