for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by IntelliJ IDEA.
* User: hugh.li
* Date: 2020/1/21
* Time: 14:52
*/
namespace HughCube\ACMClient;
class Config
{
* @var string
private $endpoint = "acm.aliyun.com";
* Access Key
*
private $accessKey;
* Secret Key
private $secretKey;
private $namespace;
private $groupName;
private $proxy;
* @return string
public function getEndpoint()
return $this->endpoint;
}
* @param string $endpoint
public function setEndpoint($endpoint)
$this->endpoint = $endpoint;
return $this;
public function getAccessKey()
return $this->accessKey;
* @param string $accessKey
public function setAccessKey($accessKey)
$this->accessKey = $accessKey;
public function getSecretKey()
return $this->secretKey;
* @param string $secretKey
public function setSecretKey($secretKey)
$this->secretKey = $secretKey;
public function getNamespace()
return $this->namespace;
* @param string $namespace
public function setNamespace($namespace)
$this->namespace = $namespace;
public function getGroupName()
return $this->groupName;
* @param string $groupName
public function setGroupName($groupName)
$this->groupName = $groupName;
public function getProxy()
return $this->proxy;
* @param string $proxy
* @return $this
public function setProxy($proxy)
$this->proxy = $proxy;