| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class Production implements EnvInterface |
||
| 14 | { |
||
| 15 | const ENV = self::Production; |
||
| 16 | |||
| 17 | private $credential, $token; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Production constructor. |
||
| 21 | * @param $credential |
||
| 22 | * @param $token |
||
| 23 | */ |
||
| 24 | public function __construct($credential, $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 | |||
| 47 | |||
| 48 | |||
| 49 | public function getUri() |
||
| 52 | } |
||
| 53 | } |