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