1 | <?php |
||
4 | abstract class AbstractService implements ServiceInterface |
||
5 | { |
||
6 | /** |
||
7 | * @var string |
||
8 | */ |
||
9 | protected $siteKey; |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $secretKey; |
||
15 | |||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $params = []; |
||
20 | |||
21 | public function getSiteKey() |
||
25 | |||
26 | public function setSiteKey($siteKey) |
||
30 | |||
31 | public function getSecretKey() |
||
35 | |||
36 | public function setSecretKey($secretKey) |
||
40 | |||
41 | public function getParams() |
||
45 | |||
46 | abstract public function getServiceUri(); |
||
47 | } |
||
48 |