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

Asaas   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 11
dl 0
loc 14
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
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
}