Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 6 | public function __construct($publicKeyId) |
|
25 | { |
||
26 | 6 | parent::__construct(); |
|
27 | 6 | $this->product('Sts'); |
|
28 | 6 | $this->version('2015-04-01'); |
|
29 | 6 | $this->action('GenerateSessionAccessKey'); |
|
30 | 6 | $this->host('sts.ap-northeast-1.aliyuncs.com'); |
|
31 | 6 | $this->scheme('https'); |
|
32 | 6 | $this->regionId('cn-hangzhou'); |
|
33 | 6 | $this->options['verify'] = false; |
|
34 | 6 | $this->options['query']['PublicKeyId'] = $publicKeyId; |
|
35 | 6 | $this->options['query']['DurationSeconds'] = Provider::DURATION_SECONDS; |
|
36 | 6 | } |
|
38 |