Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public static function create( |
||
24 | $prePush, |
||
25 | $rightMessage, |
||
26 | $errorMessage, |
||
27 | PhpUnitResponse $phpUnitResponse, |
||
28 | PhpUnitStrictCoverageResponse $phpUnitStrictCoverageResponse |
||
29 | ) { |
||
30 | return new PrePushResponse( |
||
31 | $prePush, |
||
32 | $rightMessage, |
||
33 | $errorMessage, |
||
34 | $phpUnitResponse, |
||
35 | $phpUnitStrictCoverageResponse |
||
36 | ); |
||
37 | } |
||
38 | |||
53 |