Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function __construct( |
||
32 | $basePath, |
||
33 | $analyser = null, |
||
34 | $analysis = null, |
||
35 | array $processors = [], |
||
36 | $exclude = null |
||
37 | ) { |
||
38 | $this->analyser = $analyser; |
||
39 | $this->analysis = $analysis; |
||
40 | $this->processors = $processors; |
||
41 | $this->exclude = $exclude; |
||
42 | $this->basePath = $basePath; |
||
43 | } |
||
44 | |||
112 |