1 | <?php |
||
11 | class Credentials |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $merchantKey; |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $merchantSecret; |
||
21 | |||
22 | /** |
||
23 | * Credentials constructor. |
||
24 | * |
||
25 | * @param string $merchantKey |
||
26 | * @param string $merchantSecret |
||
27 | */ |
||
28 | 6 | public function __construct($merchantKey, $merchantSecret) |
|
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | 6 | public function getMerchantKey() |
|
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | 6 | public function getMerchantSecret() |
|
49 | } |
||
50 |