Passed
Push — master ( d76556...230365 )
by Max Alex
01:42
created

Asaas   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 11
c 0
b 0
f 0
dl 0
loc 14
rs 10
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
}