Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | trait HasKeysTrait |
||
12 | { |
||
13 | /** |
||
14 | * @return mixed |
||
15 | */ |
||
16 | public function getPrivateKey() |
||
17 | { |
||
18 | return $this->getParameter('privateKey'); |
||
|
|||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @param $value |
||
23 | * @return CommonAbstractRequest |
||
24 | */ |
||
25 | public function setPrivateKey($value) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @return mixed |
||
32 | */ |
||
33 | public function getPublicKey() |
||
34 | { |
||
35 | return $this->getParameter('publicKey'); |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @param $value |
||
40 | * @return CommonAbstractRequest |
||
41 | */ |
||
42 | public function setPublicKey($value) |
||
45 | } |
||
46 | } |
||
47 |