| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 14 | private function __construct( |
||
| 15 | string $page, |
||
| 16 | string $redirectSource, |
||
| 17 | VisitorId $visitorId, |
||
| 18 | CorrelationId $correlationId |
||
| 19 | ) { |
||
| 20 | $this->page = $page; |
||
| 21 | $this->redirectSource = $redirectSource; |
||
| 22 | $this->visitorId = $visitorId; |
||
| 23 | $this->correlationId = $correlationId; |
||
| 24 | } |
||
| 55 |