Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
45 | public function __construct($startInNew = 0, $startInOld = 0, $endInNew = 0, $endInOld = 0, $percentage = null) |
||
46 | { |
||
47 | $this->startInNew = $startInNew; |
||
48 | $this->startInOld = $startInOld; |
||
49 | $this->endInNew = $endInNew; |
||
50 | $this->endInOld = $endInOld; |
||
51 | $this->percentage = $percentage; |
||
52 | } |
||
53 | |||
134 |