Conditions | 2 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function __construct($token, $status = false) { |
||
23 | $connection = new Connection($token, ((!empty($status)) ? $status : 'producao')); |
||
24 | |||
25 | $this->assinatura = new Assinatura($connection); |
||
26 | $this->cidade = new Cidades($connection); |
||
27 | $this->cliente = new Cliente($connection); |
||
28 | $this->cobranca = new Cobranca($connection); |
||
29 | $this->notificacao = new Notificacao($connection); |
||
30 | $this->transferencia = new Transferencia($connection); |
||
31 | $this->webhook = new Webhook($connection); |
||
32 | } |
||
34 |