Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
18 | public function __construct(float $mean, float $delta, int $numberOfMeasurements, int $numberOfRejections = 0) |
||
19 | { |
||
20 | $this->mean = $mean; |
||
21 | $this->delta = $delta; |
||
22 | $this->numberOfMeasurements = $numberOfMeasurements; |
||
23 | $this->numberOfRejections = $numberOfRejections; |
||
24 | } |
||
78 |