| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct( string $identifier, \DateTime $start, \DateTime $end, array $buckets, ImpressionThresholdInterface $impressionThreshold ) { |
||
| 23 | $this->identifier = $identifier; |
||
| 24 | $this->start = $start; |
||
| 25 | $this->end = $end; |
||
| 26 | $this->buckets = $buckets; |
||
| 27 | $this->impressionThreshold = $impressionThreshold; |
||
| 28 | } |
||
| 29 | } |