1 | <?php |
||
13 | class Config |
||
14 | { |
||
15 | private $key; |
||
16 | private $secret; |
||
17 | |||
18 | /** |
||
19 | * @param array $config |
||
20 | */ |
||
21 | 11 | public function __construct(array $config) |
|
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | 8 | public function getKey() |
|
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | 8 | public function getSecret() |
|
45 | |||
46 | |||
47 | } |