| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 10 | public function __construct( string $identifier, \DateTime $start, \DateTime $end, array $buckets, float $displayRatio, RandomIntegerInterface $rng ) { |
|
| 26 | 10 | $this->identifier = $identifier; |
|
| 27 | 10 | $this->start = $start; |
|
| 28 | 10 | $this->end = $end; |
|
| 29 | 10 | $this->buckets = $buckets; |
|
| 30 | 10 | $this->displayRatio = $displayRatio; |
|
| 31 | 10 | $this->rng = $rng; |
|
| 32 | 10 | } |
|
| 59 | } |