Total Complexity | 8 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class GetDirectory extends AbstractResponse { |
||
6 | |||
7 | public function getKeyChange() : string { |
||
8 | return $this->_raw->body['keyChange']; |
||
9 | } |
||
10 | |||
11 | public function getNewAccount() : string { |
||
12 | return $this->_raw->body['newAccount']; |
||
13 | } |
||
14 | |||
15 | public function getNewNonce() : string { |
||
16 | return $this->_raw->body['newNonce']; |
||
17 | } |
||
18 | |||
19 | public function getNewOrder() : string { |
||
20 | return $this->_raw->body['newOrder']; |
||
21 | } |
||
22 | |||
23 | public function getRevokeCert() : string { |
||
24 | return $this->_raw->body['revokeCert']; |
||
25 | } |
||
26 | |||
27 | public function getTermsOfService() : string { |
||
28 | return $this->_raw->body['meta']['termsOfService']; |
||
29 | } |
||
30 | |||
31 | public function getWebsite() : string { |
||
33 | } |
||
34 | |||
35 | public function getCaaIdentities() : string { |
||
36 | return $this->_raw->body['meta']['caaIdentities']; |
||
37 | } |
||
38 | } |
||
39 |