| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 2 | public function __construct( |
|
| 27 | string $senderId, |
||
| 28 | string $recipientId, |
||
| 29 | int $timestamp, |
||
| 30 | PassThreadControl $passThreadControl |
||
| 31 | ) { |
||
| 32 | 2 | parent::__construct($senderId, $recipientId); |
|
| 33 | |||
| 34 | 2 | $this->timestamp = $timestamp; |
|
| 35 | 2 | $this->passThreadControl = $passThreadControl; |
|
| 36 | 2 | } |
|
| 37 | |||
| 66 |