Passed
Push — master ( 640d80...f107f9 )
by Max Alex
01:45
created

Notificacao   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace CodePhix\Asaas;
4
5
6
class Notificacao {
7
    //
8
9
    public $http;
10
11
    public function __construct(Connection $connection)
12
    {
13
        $this->http = $connection;
14
    }
15
}
16