Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
53 | public function __construct( |
||
54 | string $id, |
||
55 | string $from, |
||
56 | string $numberTo, |
||
57 | int $status, |
||
58 | int $smsCount, |
||
59 | string$smsContent, |
||
60 | float $priceInGrosz |
||
61 | ) { |
||
62 | $this->id = $id; |
||
63 | $this->from = $from; |
||
64 | $this->numberTo = $numberTo; |
||
65 | $this->status = $status; |
||
66 | $this->smsCount = $smsCount; |
||
67 | $this->smsContent = $smsContent; |
||
68 | $this->priceInGrosz = $priceInGrosz; |
||
69 | } |
||
70 | |||
145 |