Skip to content

Commit

Permalink
Issue fix in working with configuration array for configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
sumanthchilka committed Oct 26, 2018
1 parent b4216d0 commit fdcb7a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/com/zoho/crm/library/common/ZCRMConfigUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static function initialize($initializeOAuth,$configuration)
}
}

private function setConfigValues($configuration)
private static function setConfigValues($configuration)
{
$config_keys = array(APIConstants::CURRENT_USER_EMAIL,ZohoOAuthConstants::SANDBOX,APIConstants::API_BASEURL,
APIConstants::API_VERSION,APIConstants::APPLICATION_LOGFILE_PATH);
Expand Down
2 changes: 1 addition & 1 deletion src/com/zoho/oauth/client/ZohoOAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static function initialize($configFilePointer,$configuration)
}
}

private function setConfigValues($configuration)
private static function setConfigValues($configuration)
{
$config_keys = array(ZohoOAuthConstants::CLIENT_ID,ZohoOAuthConstants::CLIENT_SECRET,ZohoOAuthConstants::REDIRECT_URL,ZohoOAuthConstants::ACCESS_TYPE
,ZohoOAuthConstants::PERSISTENCE_HANDLER_CLASS,ZohoOAuthConstants::IAM_URL,ZohoOAuthConstants::TOKEN_PERSISTENCE_PATH,ZohoOAuthConstants::DATABASE_PORT
Expand Down

0 comments on commit fdcb7a4

Please sign in to comment.