| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function __construct( |
||
| 40 | string $number, |
||
| 41 | string $docDate, |
||
| 42 | int $receivedAt, |
||
| 43 | string $type, |
||
| 44 | string $status, |
||
| 45 | string $senderName |
||
| 46 | ) { |
||
| 47 | $this->number = $number; |
||
| 48 | $this->docDate = $docDate; |
||
| 49 | $this->receivedAt = $receivedAt; |
||
| 50 | $this->type = $type; |
||
| 51 | $this->status = $status; |
||
| 52 | $this->senderName = $senderName; |
||
| 53 | } |
||
| 54 | |||
| 84 | } |