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