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