for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace DarkGold\Salesforce;
class ClientConfig implements ClientConfigInterface {
/**
* @var
*/
private $loginUrl;
private $clientId;
private $clientSecret;
public function __construct($loginUrl, $clientId, $clientSecret)
{
$this->loginUrl = $loginUrl;
$this->clientId = $clientId;
$this->clientSecret = $clientSecret;
}
* @return string
public function getLoginUrl()
return $this->loginUrl;
public function getClientId()
return $this->clientId;
public function getClientSecret()
return $this->clientSecret;