Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function __construct($id, $from, $numberTo, $status, $smsCount, $smsContent, $priceInGrosz) |
||
26 | { |
||
27 | $this->id = $id; |
||
28 | $this->from = $from; |
||
29 | $this->numberTo = $numberTo; |
||
30 | $this->status = $status; |
||
31 | $this->smsCount = $smsCount; |
||
32 | $this->smsContent = $smsContent; |
||
33 | $this->priceInGrosz = $priceInGrosz; |
||
34 | } |
||
35 | |||
110 |