Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class SandBox implements EnvInterface |
||
15 | { |
||
16 | const Env = self::SandBox; |
||
17 | private $credential, $token; |
||
18 | |||
19 | /** |
||
20 | * Production constructor. |
||
21 | * @param $credential |
||
22 | * @param $token |
||
23 | */ |
||
24 | public function __construct($credential, $token) |
||
25 | { |
||
26 | $this->credential = $credential; |
||
27 | $this->token = $token; |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @return mixed |
||
32 | */ |
||
33 | public function getCredential() |
||
34 | { |
||
35 | return $this->credential; |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @return mixed |
||
40 | */ |
||
41 | public function getToken() |
||
44 | } |
||
45 | |||
46 | public function getUri() |
||
49 | } |
||
50 | } |