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

Webhook   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 7
rs 10
c 1
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 Webhook {
7
8
    public $http;
9
10
    public function __construct(Connection $connection)
11
    {
12
        $this->http = $connection;
13
    }
14
}
15