Passed
Push — master ( 230365...2345ea )
by Max Alex
01:50
created

Asaas::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 6
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace CodePhix\Asaas;
4
5
use CodePhix\Asaas\Assinatura;
6
use CodePhix\Asaas\Cliente;
7
use CodePhix\Asaas\Cobranca;
8
use CodePhix\Asaas\Notificacao;
9
use CodePhix\Asaas\Webhook;
10
11
class Asaas {
12
    
13
    public $assinatura;
14
    public $cliente;
15
    public $cobranca;
16
    public $notificacao;
17
    public $webhook;
18
    
19
    public function __construct() {
20
        $this->assinatura  = new Assinatura;
21
        $this->cliente     = new Cliente;
22
        $this->cobranca    = new Cobranca;
23
        $this->notificacao = new Notificacao;
24
        $this->webhook     = new Webhook;
25
    }
26
}