| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function setEnv($entorno) |
||
| 33 | { |
||
| 34 | if ($entorno == 'INTEG') { |
||
| 35 | self::$api_base = "https://integ-pago.culqi.com/api/v1"; |
||
| 36 | } |
||
| 37 | elseif ($entorno == 'PRODUC') { |
||
| 38 | self::$api_base = "https://pago.culqi.com/api/v1"; |
||
| 39 | } |
||
| 40 | else { |
||
| 41 | self::$api_base = "https://integ-pago.culqi.com/api/v1"; |
||
| 42 | } |
||
| 43 | |||
| 44 | } |
||
| 45 | |||
| 55 |