| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function __construct($options) |
||
| 13 | { |
||
| 14 | $this->api_key = $options["api_key"]; |
||
| 15 | if (!$this->api_key) { |
||
| 16 | throw new InvalidApiKey(); |
||
| 17 | } |
||
| 18 | |||
| 19 | $this->Cargos = new Cargos($this); |
||
| 20 | $this->Suscripciones = new Suscripciones($this); |
||
| 21 | $this->Devoluciones = new Devoluciones($this); |
||
| 22 | $this->Planes = new Planes($this); |
||
| 23 | |||
| 24 | } |
||
| 25 | |||
| 55 |