YlyConfig.php
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
namespace App\Config;
use InvalidArgumentException;
class YlyConfig{
private $clientId = '';
private $clientSecret = '';
private $requestUrl = "https://open-api.10ss.net";
private $log;
public function __construct($clientId, $clientSecret)
{
if ($clientId == null || $clientId == "") {
throw new InvalidArgumentException("clientId is required");
}
if ($clientSecret == null || $clientSecret == "") {
throw new InvalidArgumentException("clientSecret is required");
}
$this->clientId = $clientId;
$this->clientSecret = $clientSecret;
}
public function getClientId()
{
return $this->clientId;
}
public function getClientSecret()
{
return $this->clientSecret;
}
public function getRequestUrl()
{
return $this->requestUrl;
}
public function setRequestUrl($requestUrl)
{
$this->requestUrl = $requestUrl;
}
public function getLog()
{
return $this->log;
}
public function setLog($log)
{
if (!method_exists($log, "info")) {
throw new InvalidArgumentException("logger need have method 'info(\$message)'");
}
if (!method_exists($log, "error")) {
throw new InvalidArgumentException("logger need have method 'error(\$message)'");
}
$this->log = $log;
}
}