Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
33 | 4 | public function __construct($fileBefore, Function_ $functionBefore, $fileAfter, Function_ $functionAfter) |
|
34 | { |
||
35 | 4 | $this->fileBefore = $fileBefore; |
|
36 | 4 | $this->functionBefore = $functionBefore; |
|
37 | 4 | $this->fileAfter = $fileAfter; |
|
38 | 4 | $this->functionAfter = $functionAfter; |
|
39 | 4 | } |
|
40 | |||
65 |