Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
54 | public function __construct( |
||
55 | string $number, |
||
56 | string $docDate, |
||
57 | string $type, |
||
58 | string $status, |
||
59 | string $senderName, |
||
60 | string $content, |
||
61 | ?Body $body = null |
||
62 | ) { |
||
63 | $this->number = $number; |
||
64 | $this->docDate = $docDate; |
||
65 | $this->type = $type; |
||
66 | $this->status = $status; |
||
67 | $this->senderName = $senderName; |
||
68 | $this->content = $content; |
||
69 | $this->body = $body; |
||
70 | } |
||
71 | |||
117 |