Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
53 | 2 | 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 | 2 | $this->id = $id; |
|
63 | 2 | $this->from = $from; |
|
64 | 2 | $this->numberTo = $numberTo; |
|
65 | 2 | $this->status = $status; |
|
66 | 2 | $this->smsCount = $smsCount; |
|
67 | 2 | $this->smsContent = $smsContent; |
|
68 | 2 | $this->priceInGrosz = $priceInGrosz; |
|
69 | 2 | } |
|
70 | |||
145 |