Total Complexity | 5 |
Total Lines | 55 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class Endpoint extends Entity |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $newNonce; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $newAccount; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $newOrder; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | protected $newAuthz; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | protected $revokeCert; |
||
41 | |||
42 | /** |
||
43 | * @var string |
||
44 | */ |
||
45 | protected $keyChange; |
||
46 | |||
47 | public function getNewNonceUrl(): string |
||
48 | { |
||
49 | return $this->newNonce; |
||
50 | } |
||
51 | |||
52 | public function getNewAccountUrl(): string |
||
53 | { |
||
54 | return $this->newAccount; |
||
55 | } |
||
56 | |||
57 | public function getNewOrderUrl(): string |
||
58 | { |
||
59 | return $this->newOrder; |
||
60 | } |
||
61 | |||
62 | public function getRevokeCertificateUrl(): string |
||
63 | { |
||
64 | return $this->revokeCert; |
||
65 | } |
||
66 | |||
67 | public function getKeyChangeUrl(): string |
||
70 | } |
||
71 | } |
||
72 |